結果
問題 |
No.182 新規性の虜
|
ユーザー |
|
提出日時 | 2021-01-13 00:04:23 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 121 bytes |
コンパイル時間 | 320 ms |
コンパイル使用メモリ | 81,848 KB |
実行使用メモリ | 136,252 KB |
最終ジャッジ日時 | 2024-11-21 13:29:08 |
合計ジャッジ時間 | 64,438 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 WA * 2 |
other | WA * 19 TLE * 8 |
ソースコード
n = int(input()) a = list(map(int,input().split())) x = 0 for i in range(n): if a.count(a[i]) == 0: x += 1 print(x)