結果

問題 No.182 新規性の虜
ユーザー nebukuro09nebukuro09
提出日時 2016-10-07 16:31:31
言語 Python2
(2.7.18)
結果
AC  
実行時間 66 ms / 5,000 ms
コード長 102 bytes
コンパイル時間 646 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 21,584 KB
最終ジャッジ日時 2024-06-08 08:40:54
合計ジャッジ時間 2,721 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,784 KB
testcase_01 AC 12 ms
6,656 KB
testcase_02 AC 11 ms
6,784 KB
testcase_03 AC 11 ms
6,656 KB
testcase_04 AC 12 ms
6,784 KB
testcase_05 AC 12 ms
6,784 KB
testcase_06 AC 12 ms
6,784 KB
testcase_07 AC 12 ms
6,784 KB
testcase_08 AC 40 ms
13,640 KB
testcase_09 AC 58 ms
15,324 KB
testcase_10 AC 50 ms
14,828 KB
testcase_11 AC 46 ms
14,120 KB
testcase_12 AC 28 ms
12,328 KB
testcase_13 AC 12 ms
6,784 KB
testcase_14 AC 12 ms
6,784 KB
testcase_15 AC 12 ms
6,656 KB
testcase_16 AC 11 ms
6,784 KB
testcase_17 AC 11 ms
6,656 KB
testcase_18 AC 42 ms
11,820 KB
testcase_19 AC 33 ms
10,648 KB
testcase_20 AC 26 ms
9,600 KB
testcase_21 AC 46 ms
12,280 KB
testcase_22 AC 30 ms
10,100 KB
testcase_23 AC 13 ms
6,784 KB
testcase_24 AC 66 ms
21,584 KB
testcase_25 AC 36 ms
7,808 KB
testcase_26 AC 18 ms
8,448 KB
testcase_27 AC 13 ms
6,656 KB
evil01.txt AC 71 ms
22,608 KB
evil02.txt AC 70 ms
22,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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