結果
| 問題 |
No.182 新規性の虜
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 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 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 19 TLE * 8 |
ソースコード
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)