結果

問題 No.182 新規性の虜
ユーザー compass19compass19
提出日時 2016-12-31 14:18:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 93 ms / 5,000 ms
コード長 179 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 25,404 KB
最終ジャッジ日時 2024-06-08 10:00:24
合計ジャッジ時間 2,708 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 31 ms
10,496 KB
testcase_04 AC 31 ms
10,496 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 29 ms
10,496 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 66 ms
19,584 KB
testcase_09 AC 91 ms
21,148 KB
testcase_10 AC 84 ms
20,004 KB
testcase_11 AC 75 ms
19,908 KB
testcase_12 AC 49 ms
15,396 KB
testcase_13 AC 30 ms
10,496 KB
testcase_14 AC 30 ms
10,624 KB
testcase_15 AC 30 ms
10,624 KB
testcase_16 AC 30 ms
10,624 KB
testcase_17 AC 31 ms
10,624 KB
testcase_18 AC 72 ms
17,768 KB
testcase_19 AC 61 ms
15,772 KB
testcase_20 AC 50 ms
13,952 KB
testcase_21 AC 79 ms
18,840 KB
testcase_22 AC 56 ms
14,724 KB
testcase_23 AC 30 ms
10,624 KB
testcase_24 AC 93 ms
25,404 KB
testcase_25 AC 64 ms
12,476 KB
testcase_26 AC 38 ms
12,160 KB
testcase_27 AC 30 ms
10,624 KB
evil01.txt AC 101 ms
25,728 KB
evil02.txt AC 104 ms
25,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

input()
a = list(map(int, input().split()))
dic = dict()
ans = 0
for i in a:
	if i in dic:
		if dic[i]:
			ans -= 1
			dic[i] = False
	else:
		dic[i] = True
		ans += 1
print(ans)
0