結果
| 問題 | No.182 新規性の虜 |
| コンテスト | |
| ユーザー |
yn
|
| 提出日時 | 2015-06-25 11:34:03 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 269 bytes |
| 記録 | |
| コンパイル時間 | 95 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 20,516 KB |
| 最終ジャッジ日時 | 2024-07-07 17:32:42 |
| 合計ジャッジ時間 | 2,406 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 25 RE * 2 |
ソースコード
n = int(input())
a = list(map(int, input().split()))
a.sort()
count = 1
if a[1] == a[0]:
count -= 1
else :
count += 1
for i in range(2,n):
if a[i] == a[i-1]:
if a[i] != a[i-2]:
count -= 1
else:
count += 1
print(count)
yn