結果

問題 No.182 新規性の虜
ユーザー 🍡yurahuna🍡yurahuna
提出日時 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 27 ms
10,496 KB
testcase_07 AC 30 ms
10,496 KB
testcase_08 AC 77 ms
16,236 KB
testcase_09 AC 110 ms
19,680 KB
testcase_10 AC 104 ms
18,548 KB
testcase_11 AC 91 ms
17,020 KB
testcase_12 AC 58 ms
13,208 KB
testcase_13 AC 28 ms
10,496 KB
testcase_14 AC 29 ms
10,624 KB
testcase_15 AC 28 ms
10,496 KB
testcase_16 AC 27 ms
10,496 KB
testcase_17 AC 28 ms
10,752 KB
testcase_18 AC 84 ms
17,708 KB
testcase_19 AC 65 ms
15,780 KB
testcase_20 AC 52 ms
13,568 KB
testcase_21 AC 89 ms
18,848 KB
testcase_22 AC 57 ms
14,512 KB
testcase_23 AC 27 ms
10,496 KB
testcase_24 AC 94 ms
20,260 KB
testcase_25 AC 64 ms
12,480 KB
testcase_26 AC 37 ms
11,776 KB
testcase_27 AC 30 ms
10,624 KB
evil01.txt AC 95 ms
21,424 KB
evil02.txt AC 98 ms
21,544 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