結果

問題 No.182 新規性の虜
ユーザー IHIH
提出日時 2021-01-13 00:04:55
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 121 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 135,696 KB
最終ジャッジ日時 2024-11-21 13:30:32
合計ジャッジ時間 64,368 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
133,376 KB
testcase_01 AC 35 ms
129,440 KB
testcase_02 AC 35 ms
127,320 KB
testcase_03 AC 35 ms
129,432 KB
testcase_04 AC 35 ms
132,536 KB
testcase_05 AC 35 ms
131,112 KB
testcase_06 AC 35 ms
135,696 KB
testcase_07 AC 40 ms
52,176 KB
testcase_08 AC 3,025 ms
72,156 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 4,111 ms
73,712 KB
testcase_12 AC 778 ms
66,296 KB
testcase_13 AC 36 ms
52,600 KB
testcase_14 AC 35 ms
53,348 KB
testcase_15 AC 34 ms
52,940 KB
testcase_16 AC 34 ms
52,320 KB
testcase_17 AC 35 ms
52,704 KB
testcase_18 TLE -
testcase_19 AC 3,211 ms
71,216 KB
testcase_20 AC 1,202 ms
67,084 KB
testcase_21 TLE -
testcase_22 AC 1,922 ms
68,688 KB
testcase_23 AC 37 ms
52,052 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 174 ms
62,176 KB
testcase_27 AC 36 ms
52,432 KB
evil01.txt TLE -
evil02.txt TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int,input().split()))
x = 0
for i in range(n):
  if a.count(a[i]) == 1:
    x += 1
print(x)
0