結果

問題 No.1557 Binary Variable
ユーザー kohei2019kohei2019
提出日時 2022-06-19 13:52:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 450 ms / 2,000 ms
コード長 368 bytes
コンパイル時間 746 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 99,336 KB
最終ジャッジ日時 2024-10-11 11:15:55
合計ジャッジ時間 15,567 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 214 ms
88,972 KB
testcase_01 AC 241 ms
89,612 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 40 ms
51,712 KB
testcase_04 AC 303 ms
90,312 KB
testcase_05 AC 309 ms
90,172 KB
testcase_06 AC 292 ms
89,152 KB
testcase_07 AC 300 ms
88,620 KB
testcase_08 AC 353 ms
90,392 KB
testcase_09 AC 365 ms
90,136 KB
testcase_10 AC 397 ms
90,424 KB
testcase_11 AC 404 ms
89,980 KB
testcase_12 AC 345 ms
89,884 KB
testcase_13 AC 396 ms
90,208 KB
testcase_14 AC 420 ms
89,236 KB
testcase_15 AC 408 ms
90,332 KB
testcase_16 AC 424 ms
99,336 KB
testcase_17 AC 416 ms
88,972 KB
testcase_18 AC 413 ms
89,360 KB
testcase_19 AC 441 ms
97,416 KB
testcase_20 AC 448 ms
98,184 KB
testcase_21 AC 450 ms
98,188 KB
testcase_22 AC 443 ms
97,676 KB
testcase_23 AC 446 ms
98,068 KB
testcase_24 AC 431 ms
94,580 KB
testcase_25 AC 425 ms
95,104 KB
testcase_26 AC 421 ms
92,336 KB
testcase_27 AC 442 ms
91,936 KB
testcase_28 AC 432 ms
90,488 KB
testcase_29 AC 397 ms
90,068 KB
testcase_30 AC 395 ms
90,592 KB
testcase_31 AC 403 ms
90,572 KB
testcase_32 AC 398 ms
90,596 KB
testcase_33 AC 443 ms
98,188 KB
testcase_34 AC 41 ms
51,840 KB
testcase_35 AC 42 ms
52,096 KB
testcase_36 AC 42 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
lsLR = []
for i in range(M):
    L,R = map(int,input().split())
    lsLR.append((L,R))
lsLR.sort(key=lambda x:-x[1])
cnt = 0
ind = 0
while lsLR:
    l,r = lsLR.pop()
    rr = r
    cnt += 1
    while lsLR:
        l,r = lsLR[-1]
        if l <= rr:
            lsLR.pop()
            continue
        else:
            break
print(N-cnt)
0