結果

問題 No.1285 ゴミ捨て
ユーザー lam6er
提出日時 2025-04-15 23:35:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 206 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 77,936 KB
最終ジャッジ日時 2025-04-15 23:36:39
合計ジャッジ時間 2,763 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
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