結果

問題 No.1285 ゴミ捨て
ユーザー roarisroaris
提出日時 2020-11-13 21:30:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 319 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,696 KB
最終ジャッジ日時 2024-11-28 21:42:55
合計ジャッジ時間 2,489 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,016 KB
testcase_01 AC 38 ms
53,632 KB
testcase_02 AC 38 ms
54,272 KB
testcase_03 AC 37 ms
53,760 KB
testcase_04 AC 38 ms
53,632 KB
testcase_05 AC 39 ms
54,272 KB
testcase_06 AC 38 ms
53,760 KB
testcase_07 AC 87 ms
77,312 KB
testcase_08 AC 50 ms
64,000 KB
testcase_09 AC 69 ms
76,288 KB
testcase_10 AC 83 ms
77,296 KB
testcase_11 AC 80 ms
77,056 KB
testcase_12 AC 73 ms
76,544 KB
testcase_13 AC 76 ms
77,312 KB
testcase_14 AC 90 ms
77,696 KB
testcase_15 AC 77 ms
77,184 KB
testcase_16 AC 55 ms
69,376 KB
testcase_17 AC 55 ms
69,632 KB
testcase_18 AC 52 ms
69,248 KB
testcase_19 AC 67 ms
76,160 KB
testcase_20 AC 53 ms
68,096 KB
testcase_21 AC 59 ms
73,600 KB
testcase_22 AC 91 ms
77,312 KB
testcase_23 AC 91 ms
77,696 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