結果

問題 No.1285 ゴミ捨て
ユーザー nohakai3nohakai3
提出日時 2022-07-14 18:18:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 311 ms / 2,000 ms
コード長 241 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 15,576 KB
最終ジャッジ日時 2024-06-26 02:09:32
合計ジャッジ時間 5,156 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 305 ms
15,280 KB
testcase_08 AC 40 ms
10,752 KB
testcase_09 AC 144 ms
12,644 KB
testcase_10 AC 258 ms
14,664 KB
testcase_11 AC 247 ms
14,292 KB
testcase_12 AC 183 ms
13,352 KB
testcase_13 AC 186 ms
13,476 KB
testcase_14 AC 282 ms
14,964 KB
testcase_15 AC 208 ms
13,688 KB
testcase_16 AC 80 ms
11,520 KB
testcase_17 AC 80 ms
11,648 KB
testcase_18 AC 75 ms
11,648 KB
testcase_19 AC 133 ms
12,416 KB
testcase_20 AC 73 ms
11,392 KB
testcase_21 AC 93 ms
11,776 KB
testcase_22 AC 308 ms
15,576 KB
testcase_23 AC 311 ms
15,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heapreplace

n=int(input())
A=[]
for i in range(n):
    a=int(input())
    A.append(a)

A.sort()
q=[A[0]]
for a in A[1:]:
    if a<=q[0] + 1:
        heappush(q,a)
    else:
        heapreplace(q,a)

print(len(q))
0