結果

問題 No.1557 Binary Variable
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-06-25 22:25:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 516 ms / 2,000 ms
コード長 245 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 108,060 KB
最終ジャッジ日時 2024-06-25 08:33:47
合計ジャッジ時間 16,767 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 248 ms
96,020 KB
testcase_01 AC 257 ms
102,124 KB
testcase_02 AC 38 ms
52,992 KB
testcase_03 AC 37 ms
52,812 KB
testcase_04 AC 341 ms
97,820 KB
testcase_05 AC 345 ms
97,364 KB
testcase_06 AC 330 ms
97,516 KB
testcase_07 AC 333 ms
97,740 KB
testcase_08 AC 391 ms
97,380 KB
testcase_09 AC 405 ms
97,668 KB
testcase_10 AC 442 ms
97,272 KB
testcase_11 AC 442 ms
97,364 KB
testcase_12 AC 394 ms
97,672 KB
testcase_13 AC 438 ms
97,344 KB
testcase_14 AC 456 ms
97,148 KB
testcase_15 AC 434 ms
97,224 KB
testcase_16 AC 456 ms
97,308 KB
testcase_17 AC 445 ms
97,356 KB
testcase_18 AC 445 ms
97,276 KB
testcase_19 AC 496 ms
107,136 KB
testcase_20 AC 495 ms
107,668 KB
testcase_21 AC 498 ms
108,060 KB
testcase_22 AC 506 ms
107,396 KB
testcase_23 AC 516 ms
107,676 KB
testcase_24 AC 514 ms
103,968 KB
testcase_25 AC 497 ms
104,960 KB
testcase_26 AC 495 ms
102,312 KB
testcase_27 AC 486 ms
101,280 KB
testcase_28 AC 479 ms
100,020 KB
testcase_29 AC 477 ms
98,416 KB
testcase_30 AC 481 ms
99,044 KB
testcase_31 AC 468 ms
98,340 KB
testcase_32 AC 474 ms
98,928 KB
testcase_33 AC 451 ms
98,012 KB
testcase_34 AC 38 ms
52,400 KB
testcase_35 AC 38 ms
53,352 KB
testcase_36 AC 38 ms
53,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
lr = [list(map(int, input().split())) for i in range(m)]
lr.sort(key=lambda x:x[1])
last = lr[0][1]
cnt = 1
for i in range(1, m):
    l, r = lr[i]
    if last < l:
        cnt += 1
        last = r
print(n - cnt)
0