結果

問題 No.182 新規性の虜
ユーザー compass19compass19
提出日時 2016-12-31 14:18:46
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 94 ms / 5,000 ms
コード長 179 bytes
コンパイル時間 430 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 25,324 KB
最終ジャッジ日時 2024-12-27 12:30:18
合計ジャッジ時間 3,283 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 AC 28 ms
10,496 KB
testcase_03 AC 29 ms
10,496 KB
testcase_04 AC 29 ms
10,496 KB
testcase_05 AC 30 ms
10,496 KB
testcase_06 AC 29 ms
10,496 KB
testcase_07 AC 30 ms
10,496 KB
testcase_08 AC 66 ms
19,452 KB
testcase_09 AC 90 ms
20,976 KB
testcase_10 AC 81 ms
19,876 KB
testcase_11 AC 72 ms
19,784 KB
testcase_12 AC 47 ms
15,272 KB
testcase_13 AC 29 ms
10,496 KB
testcase_14 AC 28 ms
10,624 KB
testcase_15 AC 29 ms
10,368 KB
testcase_16 AC 29 ms
10,496 KB
testcase_17 AC 28 ms
10,368 KB
testcase_18 AC 76 ms
17,700 KB
testcase_19 AC 61 ms
15,644 KB
testcase_20 AC 49 ms
13,824 KB
testcase_21 AC 79 ms
18,712 KB
testcase_22 AC 56 ms
14,600 KB
testcase_23 AC 29 ms
10,368 KB
testcase_24 AC 94 ms
25,324 KB
testcase_25 AC 63 ms
12,348 KB
testcase_26 AC 37 ms
12,288 KB
testcase_27 AC 32 ms
10,496 KB
evil01.txt AC 101 ms
25,796 KB
evil02.txt AC 101 ms
25,920 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