結果

問題 No.182 新規性の虜
ユーザー 🍡yurahuna🍡yurahuna
提出日時 2016-01-24 10:06:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 106 ms / 5,000 ms
コード長 230 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 20,644 KB
最終ジャッジ日時 2024-06-08 05:09:12
合計ジャッジ時間 2,700 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 28 ms
10,880 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 75 ms
16,360 KB
testcase_09 AC 106 ms
19,860 KB
testcase_10 AC 91 ms
18,808 KB
testcase_11 AC 82 ms
17,272 KB
testcase_12 AC 49 ms
13,464 KB
testcase_13 AC 28 ms
10,752 KB
testcase_14 AC 26 ms
10,752 KB
testcase_15 AC 27 ms
10,752 KB
testcase_16 AC 28 ms
10,752 KB
testcase_17 AC 28 ms
10,880 KB
testcase_18 AC 79 ms
17,968 KB
testcase_19 AC 65 ms
15,908 KB
testcase_20 AC 50 ms
13,696 KB
testcase_21 AC 90 ms
18,976 KB
testcase_22 AC 58 ms
14,640 KB
testcase_23 AC 29 ms
10,880 KB
testcase_24 AC 97 ms
20,644 KB
testcase_25 AC 64 ms
12,608 KB
testcase_26 AC 36 ms
12,032 KB
testcase_27 AC 27 ms
10,880 KB
evil01.txt AC 95 ms
21,800 KB
evil02.txt AC 97 ms
21,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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)
0