結果

問題 No.182 新規性の虜
ユーザー nbisconbisco
提出日時 2016-03-28 00:17:42
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 90 ms / 5,000 ms
コード長 264 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 22,540 KB
最終ジャッジ日時 2024-12-27 02:40:29
合計ジャッジ時間 2,957 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 28 ms
10,496 KB
testcase_02 AC 29 ms
10,496 KB
testcase_03 AC 28 ms
10,368 KB
testcase_04 AC 29 ms
10,496 KB
testcase_05 AC 28 ms
10,624 KB
testcase_06 AC 28 ms
10,496 KB
testcase_07 AC 28 ms
10,624 KB
testcase_08 AC 64 ms
17,636 KB
testcase_09 AC 83 ms
20,112 KB
testcase_10 AC 74 ms
19,316 KB
testcase_11 AC 68 ms
18,420 KB
testcase_12 AC 45 ms
13,952 KB
testcase_13 AC 29 ms
10,752 KB
testcase_14 AC 28 ms
10,624 KB
testcase_15 AC 28 ms
10,496 KB
testcase_16 AC 28 ms
10,496 KB
testcase_17 AC 28 ms
10,624 KB
testcase_18 AC 56 ms
15,300 KB
testcase_19 AC 48 ms
14,064 KB
testcase_20 AC 40 ms
12,544 KB
testcase_21 AC 59 ms
15,504 KB
testcase_22 AC 46 ms
12,972 KB
testcase_23 AC 28 ms
10,624 KB
testcase_24 AC 90 ms
22,540 KB
testcase_25 AC 47 ms
11,708 KB
testcase_26 AC 35 ms
11,904 KB
testcase_27 AC 28 ms
10,624 KB
evil01.txt AC 94 ms
24,828 KB
evil02.txt AC 97 ms
24,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
#fileencoding: utf-8

N = int(input())
dic = {}
for i in input().strip().split(" "):
    if i in dic:
        dic[i] = False
    else:
        dic[i] = True
count = 0
for k,v in dic.items():
    if v == True:
        count += 1
print(count)
0