結果

問題 No.182 新規性の虜
ユーザー yuppe19 😺yuppe19 😺
提出日時 2015-04-20 14:25:21
言語 Python2
(2.7.18)
結果
AC  
実行時間 111 ms / 5,000 ms
コード長 130 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 6,784 KB
実行使用メモリ 20,152 KB
最終ジャッジ日時 2024-12-26 19:06:03
合計ジャッジ時間 3,247 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
6,528 KB
testcase_01 AC 14 ms
6,528 KB
testcase_02 AC 12 ms
6,528 KB
testcase_03 AC 15 ms
6,400 KB
testcase_04 AC 13 ms
6,528 KB
testcase_05 AC 16 ms
6,528 KB
testcase_06 AC 12 ms
6,528 KB
testcase_07 AC 13 ms
6,528 KB
testcase_08 AC 59 ms
12,460 KB
testcase_09 AC 86 ms
13,844 KB
testcase_10 AC 75 ms
13,140 KB
testcase_11 AC 70 ms
12,864 KB
testcase_12 AC 41 ms
11,632 KB
testcase_13 AC 15 ms
6,528 KB
testcase_14 AC 12 ms
6,528 KB
testcase_15 AC 13 ms
6,528 KB
testcase_16 AC 13 ms
6,656 KB
testcase_17 AC 12 ms
6,400 KB
testcase_18 AC 73 ms
13,028 KB
testcase_19 AC 56 ms
11,088 KB
testcase_20 AC 42 ms
9,344 KB
testcase_21 AC 83 ms
13,872 KB
testcase_22 AC 46 ms
10,112 KB
testcase_23 AC 15 ms
6,528 KB
testcase_24 AC 111 ms
20,152 KB
testcase_25 AC 87 ms
8,180 KB
testcase_26 AC 27 ms
8,184 KB
testcase_27 AC 15 ms
6,400 KB
evil01.txt AC 120 ms
20,276 KB
evil02.txt AC 134 ms
20,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python
from collections import Counter
raw_input()
A = map(int, raw_input().split())
print Counter(A).values().count(1)
0