結果
| 問題 | No.182 新規性の虜 |
| コンテスト | |
| ユーザー |
knt3110
|
| 提出日時 | 2018-05-22 16:12:44 |
| 言語 | Python3 (3.14.3 + numpy 2.4.2 + scipy 1.17.0) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 199 bytes |
| 記録 | |
| コンパイル時間 | 369 ms |
| コンパイル使用メモリ | 20,824 KB |
| 実行使用メモリ | 39,572 KB |
| 最終ジャッジ日時 | 2026-03-17 13:49:31 |
| 合計ジャッジ時間 | 53,527 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 21 TLE * 6 |
ソースコード
n=int(input())
l=[int(i) for i in input().split()]
l.sort()
j=0
count=0
while l!=[]:
while j!=len(l) and l[0]==l[j]:
j+=1
if j==1:
count+=1
l=l[j:]
j=0
print(count)
knt3110