結果

問題 No.182 新規性の虜
ユーザー nebukuro09nebukuro09
提出日時 2016-10-07 16:31:31
言語 Python2
(2.7.18)
結果
AC  
実行時間 70 ms / 5,000 ms
コード長 102 bytes
コンパイル時間 877 ms
コンパイル使用メモリ 6,740 KB
実行使用メモリ 21,236 KB
最終ジャッジ日時 2023-08-27 13:07:10
合計ジャッジ時間 2,687 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,424 KB
testcase_01 AC 13 ms
6,336 KB
testcase_02 AC 13 ms
6,460 KB
testcase_03 AC 13 ms
6,352 KB
testcase_04 AC 13 ms
6,488 KB
testcase_05 AC 13 ms
6,456 KB
testcase_06 AC 13 ms
6,340 KB
testcase_07 AC 13 ms
6,488 KB
testcase_08 AC 44 ms
13,260 KB
testcase_09 AC 59 ms
15,060 KB
testcase_10 AC 56 ms
14,504 KB
testcase_11 AC 47 ms
13,772 KB
testcase_12 AC 30 ms
11,760 KB
testcase_13 AC 13 ms
6,336 KB
testcase_14 AC 13 ms
6,560 KB
testcase_15 AC 13 ms
6,532 KB
testcase_16 AC 13 ms
6,328 KB
testcase_17 AC 12 ms
6,328 KB
testcase_18 AC 43 ms
11,388 KB
testcase_19 AC 34 ms
10,096 KB
testcase_20 AC 27 ms
9,016 KB
testcase_21 AC 47 ms
12,032 KB
testcase_22 AC 31 ms
9,552 KB
testcase_23 AC 13 ms
6,460 KB
testcase_24 AC 70 ms
21,236 KB
testcase_25 AC 39 ms
7,352 KB
testcase_26 AC 19 ms
8,052 KB
testcase_27 AC 13 ms
6,468 KB
evil01.txt AC 73 ms
21,984 KB
evil02.txt AC 72 ms
21,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
input()
print sum(c==1 for c in Counter(raw_input().split()).values())
0