結果

問題 No.1285 ゴミ捨て
ユーザー c-yanc-yan
提出日時 2020-11-13 21:25:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 214 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,640 KB
最終ジャッジ日時 2024-11-28 21:39:33
合計ジャッジ時間 2,562 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 114 ms
21,208 KB
testcase_08 AC 33 ms
11,264 KB
testcase_09 AC 63 ms
15,204 KB
testcase_10 AC 106 ms
19,820 KB
testcase_11 AC 94 ms
19,080 KB
testcase_12 AC 77 ms
16,892 KB
testcase_13 AC 75 ms
16,880 KB
testcase_14 AC 111 ms
20,612 KB
testcase_15 AC 85 ms
17,756 KB
testcase_16 AC 44 ms
12,660 KB
testcase_17 AC 45 ms
12,672 KB
testcase_18 AC 43 ms
12,544 KB
testcase_19 AC 60 ms
14,800 KB
testcase_20 AC 42 ms
12,416 KB
testcase_21 AC 49 ms
13,256 KB
testcase_22 AC 121 ms
21,604 KB
testcase_23 AC 120 ms
21,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heapreplace

N, *A = map(int, open(0).read().split())

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