結果

問題 No.2796 Small Matryoshka
ユーザー titiatitia
提出日時 2024-07-30 08:22:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 685 ms / 2,000 ms
コード長 393 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 53,308 KB
最終ジャッジ日時 2024-07-30 08:22:28
合計ジャッジ時間 7,154 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 97 ms
16,896 KB
testcase_06 AC 557 ms
47,744 KB
testcase_07 AC 28 ms
10,624 KB
testcase_08 AC 415 ms
39,556 KB
testcase_09 AC 518 ms
51,840 KB
testcase_10 AC 685 ms
53,072 KB
testcase_11 AC 648 ms
53,308 KB
testcase_12 AC 236 ms
24,872 KB
testcase_13 AC 51 ms
12,672 KB
testcase_14 AC 198 ms
22,616 KB
testcase_15 AC 72 ms
14,080 KB
testcase_16 AC 108 ms
16,512 KB
testcase_17 AC 432 ms
36,764 KB
testcase_18 AC 455 ms
40,412 KB
testcase_19 AC 138 ms
19,952 KB
testcase_20 AC 197 ms
23,544 KB
testcase_21 AC 391 ms
36,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from operator import itemgetter
from heapq import heappop,heappush

N=int(input())
AB=[list(map(int,input().split())) for i in range(N)]

AB.sort(key=itemgetter(0))
H=[]

for a,b in AB:
    if H:
        if H[0]<=a:
            heappop(H)
            heappush(H,b)
        else:
            heappush(H,b)
    else:
        heappush(H,b)

print(len(H)-1)
0