結果

問題 No.2796 Small Matryoshka
ユーザー tatyamtatyam
提出日時 2024-06-28 21:40:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 862 ms / 2,000 ms
コード長 213 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 109,056 KB
最終ジャッジ日時 2024-06-28 21:40:15
合計ジャッジ時間 9,493 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
51,968 KB
testcase_01 AC 44 ms
52,352 KB
testcase_02 AC 42 ms
52,224 KB
testcase_03 AC 43 ms
52,224 KB
testcase_04 AC 43 ms
52,352 KB
testcase_05 AC 164 ms
78,464 KB
testcase_06 AC 658 ms
91,648 KB
testcase_07 AC 47 ms
53,120 KB
testcase_08 AC 540 ms
88,832 KB
testcase_09 AC 862 ms
103,168 KB
testcase_10 AC 803 ms
109,056 KB
testcase_11 AC 810 ms
102,684 KB
testcase_12 AC 450 ms
86,784 KB
testcase_13 AC 151 ms
77,696 KB
testcase_14 AC 431 ms
85,316 KB
testcase_15 AC 187 ms
79,104 KB
testcase_16 AC 243 ms
80,896 KB
testcase_17 AC 592 ms
89,760 KB
testcase_18 AC 646 ms
91,484 KB
testcase_19 AC 262 ms
80,896 KB
testcase_20 AC 330 ms
83,584 KB
testcase_21 AC 568 ms
89,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

N = int(input())
A = [tuple(map(int, input().split())) for _ in range(N)]
A.sort()
q = []

for l, r in A:
    if q and q[0] <= l:
        heapq.heappop(q)
    heapq.heappush(q, r)

print(len(q) - 1)
0