結果

問題 No.1557 Binary Variable
ユーザー c-yanc-yan
提出日時 2021-06-25 21:38:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 706 ms / 2,000 ms
コード長 307 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 53,028 KB
最終ジャッジ日時 2024-06-25 08:16:54
合計ジャッジ時間 23,414 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 472 ms
51,584 KB
testcase_01 AC 459 ms
48,384 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 568 ms
50,888 KB
testcase_05 AC 575 ms
50,748 KB
testcase_06 AC 556 ms
49,756 KB
testcase_07 AC 556 ms
50,320 KB
testcase_08 AC 600 ms
52,364 KB
testcase_09 AC 606 ms
52,496 KB
testcase_10 AC 659 ms
52,832 KB
testcase_11 AC 665 ms
52,828 KB
testcase_12 AC 604 ms
52,300 KB
testcase_13 AC 663 ms
52,832 KB
testcase_14 AC 671 ms
52,980 KB
testcase_15 AC 672 ms
52,856 KB
testcase_16 AC 682 ms
52,916 KB
testcase_17 AC 676 ms
52,908 KB
testcase_18 AC 666 ms
53,028 KB
testcase_19 AC 658 ms
52,980 KB
testcase_20 AC 669 ms
52,916 KB
testcase_21 AC 681 ms
52,920 KB
testcase_22 AC 649 ms
52,980 KB
testcase_23 AC 663 ms
52,916 KB
testcase_24 AC 691 ms
52,916 KB
testcase_25 AC 687 ms
52,980 KB
testcase_26 AC 695 ms
52,980 KB
testcase_27 AC 681 ms
52,920 KB
testcase_28 AC 701 ms
52,924 KB
testcase_29 AC 698 ms
52,920 KB
testcase_30 AC 683 ms
52,792 KB
testcase_31 AC 706 ms
52,920 KB
testcase_32 AC 695 ms
52,924 KB
testcase_33 AC 654 ms
52,920 KB
testcase_34 AC 31 ms
10,752 KB
testcase_35 AC 30 ms
10,752 KB
testcase_36 AC 30 ms
10,752 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)]

LR.sort(key=lambda x: x[1])

result = N
t = -1
for i in range(M):
    L, R = LR[i]
    if L <= t <= R:
        continue
    result -= 1
    t = R
print(result)
0