-
Notifications
You must be signed in to change notification settings - Fork 0
/
11723.js
65 lines (52 loc) · 1.21 KB
/
11723.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
// 메모리 초과
/*
S가 1~20이니까 길이 21짜리 배열 만들어서 처리가능.
메모리 초과
>> 설마 input 배열이 너무 커서?
*/
// input
const inputFile = __dirname + '/input'; // '/dev/stdin';
const input = require('fs').readFileSync(inputFile).toString().trim().split(/\s/);
// process
// init
let idx = 1;
let M = parseInt(input[0]);
let S = new Array(21).fill(0);
let sol = [];
// 명령 실행
while (M > 0)
{
let cmd = input[idx++];
let val = parseInt(input[idx++]);
switch(cmd)
{
case 'add':
S[val]++;
break;
case 'remove':
S[val] = 0;
break;
case 'check':
if (S[val] > 0)
sol.push(1);
else
sol.push(0);
break;
case 'toggle':
if (S[val] === 0)
S[val] = 1;
else
S[val] = 0;
break;
case 'all':
idx--;
S = new Array(21).fill(1);
break;
default: // 'empty'
idx--;
S = new Array(21).fill(0);
}
M--;
}
// output
console.log(sol.join('\n'));