結果

問題 No.1557 Binary Variable
ユーザー c-yanc-yan
提出日時 2021-06-26 00:29:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 598 ms / 2,000 ms
コード長 286 bytes
コンパイル時間 102 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 54,532 KB
最終ジャッジ日時 2024-06-25 09:02:20
合計ジャッジ時間 20,789 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 452 ms
52,864 KB
testcase_01 AC 439 ms
49,920 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 500 ms
52,312 KB
testcase_05 AC 498 ms
52,180 KB
testcase_06 AC 492 ms
51,192 KB
testcase_07 AC 491 ms
51,880 KB
testcase_08 AC 526 ms
53,660 KB
testcase_09 AC 540 ms
53,932 KB
testcase_10 AC 565 ms
54,384 KB
testcase_11 AC 578 ms
54,264 KB
testcase_12 AC 522 ms
53,860 KB
testcase_13 AC 572 ms
54,268 KB
testcase_14 AC 580 ms
54,284 KB
testcase_15 AC 580 ms
54,412 KB
testcase_16 AC 567 ms
54,216 KB
testcase_17 AC 589 ms
54,340 KB
testcase_18 AC 578 ms
54,464 KB
testcase_19 AC 559 ms
54,532 KB
testcase_20 AC 559 ms
54,348 KB
testcase_21 AC 563 ms
54,224 KB
testcase_22 AC 576 ms
54,284 KB
testcase_23 AC 551 ms
54,472 KB
testcase_24 AC 577 ms
54,228 KB
testcase_25 AC 576 ms
54,284 KB
testcase_26 AC 577 ms
54,328 KB
testcase_27 AC 575 ms
54,476 KB
testcase_28 AC 585 ms
54,224 KB
testcase_29 AC 598 ms
54,224 KB
testcase_30 AC 590 ms
54,480 KB
testcase_31 AC 582 ms
54,352 KB
testcase_32 AC 579 ms
54,224 KB
testcase_33 AC 578 ms
54,480 KB
testcase_34 AC 29 ms
10,624 KB
testcase_35 AC 29 ms
10,496 KB
testcase_36 AC 30 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin

readline = stdin.readline

N, M = map(int, readline().split())
LR = [list(map(int, readline().split())) for _ in range(M)]

result = N
t = -1
for L, R in sorted(LR, key=lambda x: x[1]):
    if L <= t <= R:
        continue
    result -= 1
    t = R
print(result)
0