結果
| 問題 | No.182 新規性の虜 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-06-23 22:12:43 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 128 ms / 5,000 ms |
| コード長 | 237 bytes |
| コンパイル時間 | 236 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 20,644 KB |
| 最終ジャッジ日時 | 2024-12-29 12:10:02 |
| 合計ジャッジ時間 | 3,548 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 27 |
ソースコード
n = int(input())
a = list(map(int,input().split()))
a.sort()
cnt=0
for i in range(n):
if i != 0:
if a[i] == a[i-1]:
continue
if i != n-1:
if a[i] == a[i+1]:
continue
cnt+=1
print(cnt)