結果

問題 No.182 新規性の虜
ユーザー matriematrie
提出日時 2020-11-30 09:43:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 116 ms / 5,000 ms
コード長 141 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,644 KB
最終ジャッジ日時 2024-09-13 02:16:50
合計ジャッジ時間 2,776 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 78 ms
16,488 KB
testcase_09 AC 116 ms
19,856 KB
testcase_10 AC 102 ms
18,656 KB
testcase_11 AC 90 ms
17,268 KB
testcase_12 AC 54 ms
13,676 KB
testcase_13 AC 30 ms
10,752 KB
testcase_14 AC 30 ms
10,624 KB
testcase_15 AC 30 ms
10,624 KB
testcase_16 AC 28 ms
10,752 KB
testcase_17 AC 30 ms
10,752 KB
testcase_18 AC 89 ms
17,960 KB
testcase_19 AC 72 ms
15,900 KB
testcase_20 AC 54 ms
13,836 KB
testcase_21 AC 96 ms
19,096 KB
testcase_22 AC 60 ms
14,640 KB
testcase_23 AC 29 ms
10,624 KB
testcase_24 AC 101 ms
20,644 KB
testcase_25 AC 70 ms
13,188 KB
testcase_26 AC 39 ms
12,032 KB
testcase_27 AC 28 ms
10,624 KB
evil01.txt AC 100 ms
21,616 KB
evil02.txt AC 103 ms
21,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
l = [0]+sorted(list(map(int, input().split())))+[10**9+1]
c = 0
for i in range(1,n+1):
	if l[i-1]<l[i]<l[i+1]: c+=1
print(c)
0