結果
問題 |
No.182 新規性の虜
|
ユーザー |
![]() |
提出日時 | 2016-01-24 10:06:29 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 110 ms / 5,000 ms |
コード長 | 230 bytes |
コンパイル時間 | 558 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 20,260 KB |
最終ジャッジ日時 | 2024-12-27 00:30:39 |
合計ジャッジ時間 | 3,102 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 27 |
ソースコード
N = int(input()) a = [0] a.extend(list(map(int, input().split()))) a.sort() a.append(10**12) i = 0 ans = 0 if N == 1: ans = 1 else: for i in range(1, N+1): if a[i-1] < a[i] < a[i+1]: ans += 1 print(ans)