結果
| 問題 | No.182 新規性の虜 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-01-13 00:04:23 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 121 bytes |
| 記録 | |
| コンパイル時間 | 299 ms |
| コンパイル使用メモリ | 85,248 KB |
| 実行使用メモリ | 71,808 KB |
| 最終ジャッジ日時 | 2026-05-15 17:18:59 |
| 合計ジャッジ時間 | 10,153 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 WA * 2 |
| other | WA * 6 TLE * 1 -- * 20 |
ソースコード
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)