結果

問題 No.1285 ゴミ捨て
ユーザー lam6er
提出日時 2025-04-16 16:01:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 206 bytes
コンパイル時間 484 ms
コンパイル使用メモリ 81,568 KB
実行使用メモリ 77,352 KB
最終ジャッジ日時 2025-04-16 16:05:17
合計ジャッジ時間 3,907 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

n = int(input())
a = [int(input()) for _ in range(n)]
a.sort()

heap = []
for x in a:
    if heap and x > heap[0] + 1:
        heapq.heappop(heap)
    heapq.heappush(heap, x)

print(len(heap))
0