結果

問題 No.1285 ゴミ捨て
ユーザー roarisroaris
提出日時 2020-11-13 21:30:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 319 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 77,824 KB
最終ジャッジ日時 2024-05-06 14:27:19
合計ジャッジ時間 3,035 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,888 KB
testcase_01 AC 45 ms
53,632 KB
testcase_02 AC 44 ms
54,528 KB
testcase_03 AC 45 ms
53,888 KB
testcase_04 AC 48 ms
53,760 KB
testcase_05 AC 44 ms
54,272 KB
testcase_06 AC 45 ms
54,272 KB
testcase_07 AC 98 ms
77,312 KB
testcase_08 AC 54 ms
64,256 KB
testcase_09 AC 83 ms
76,508 KB
testcase_10 AC 95 ms
77,312 KB
testcase_11 AC 95 ms
77,448 KB
testcase_12 AC 90 ms
76,764 KB
testcase_13 AC 84 ms
76,928 KB
testcase_14 AC 103 ms
77,824 KB
testcase_15 AC 91 ms
76,944 KB
testcase_16 AC 61 ms
69,248 KB
testcase_17 AC 61 ms
69,760 KB
testcase_18 AC 60 ms
68,864 KB
testcase_19 AC 76 ms
76,800 KB
testcase_20 AC 62 ms
68,608 KB
testcase_21 AC 66 ms
73,500 KB
testcase_22 AC 103 ms
77,568 KB
testcase_23 AC 104 ms
77,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *
from heapq import *

N = int(input())
A = [int(input()) for _ in range(N)]
A.sort()
pq = []
ans = 0

for Ai in A:
    if len(pq)>0 and pq[0]+1<Ai:
        heappop(pq)
        heappush(pq, Ai)
    else:
        ans += 1
        heappush(pq, Ai)

print(ans)
0