結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,224 KB
testcase_01 AC 43 ms
51,968 KB
testcase_02 AC 40 ms
52,480 KB
testcase_03 AC 36 ms
52,096 KB
testcase_04 AC 36 ms
52,224 KB
testcase_05 AC 132 ms
78,208 KB
testcase_06 AC 580 ms
91,828 KB
testcase_07 AC 38 ms
53,248 KB
testcase_08 AC 537 ms
88,576 KB
testcase_09 AC 804 ms
102,924 KB
testcase_10 AC 732 ms
109,032 KB
testcase_11 AC 738 ms
102,892 KB
testcase_12 AC 415 ms
86,784 KB
testcase_13 AC 125 ms
77,824 KB
testcase_14 AC 349 ms
85,188 KB
testcase_15 AC 179 ms
78,968 KB
testcase_16 AC 198 ms
80,640 KB
testcase_17 AC 485 ms
89,740 KB
testcase_18 AC 602 ms
91,728 KB
testcase_19 AC 215 ms
81,344 KB
testcase_20 AC 273 ms
83,184 KB
testcase_21 AC 533 ms
89,052 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