結果

問題 No.1557 Binary Variable
ユーザー mesame3993mesame3993
提出日時 2021-10-01 14:58:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 503 ms / 2,000 ms
コード長 211 bytes
コンパイル時間 504 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 107,776 KB
最終ジャッジ日時 2024-07-19 02:32:48
合計ジャッジ時間 16,873 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 249 ms
95,928 KB
testcase_01 AC 264 ms
102,400 KB
testcase_02 AC 40 ms
51,584 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 351 ms
97,408 KB
testcase_05 AC 349 ms
97,400 KB
testcase_06 AC 335 ms
97,664 KB
testcase_07 AC 345 ms
97,384 KB
testcase_08 AC 407 ms
97,152 KB
testcase_09 AC 416 ms
97,280 KB
testcase_10 AC 442 ms
97,280 KB
testcase_11 AC 445 ms
97,864 KB
testcase_12 AC 392 ms
97,408 KB
testcase_13 AC 439 ms
97,536 KB
testcase_14 AC 453 ms
97,024 KB
testcase_15 AC 443 ms
97,152 KB
testcase_16 AC 445 ms
97,132 KB
testcase_17 AC 448 ms
97,152 KB
testcase_18 AC 447 ms
97,148 KB
testcase_19 AC 503 ms
107,008 KB
testcase_20 AC 487 ms
107,648 KB
testcase_21 AC 488 ms
107,736 KB
testcase_22 AC 497 ms
107,196 KB
testcase_23 AC 483 ms
107,776 KB
testcase_24 AC 491 ms
103,808 KB
testcase_25 AC 487 ms
105,076 KB
testcase_26 AC 482 ms
102,212 KB
testcase_27 AC 488 ms
101,644 KB
testcase_28 AC 480 ms
100,180 KB
testcase_29 AC 477 ms
98,356 KB
testcase_30 AC 479 ms
99,072 KB
testcase_31 AC 471 ms
98,308 KB
testcase_32 AC 481 ms
98,860 KB
testcase_33 AC 458 ms
97,820 KB
testcase_34 AC 39 ms
52,224 KB
testcase_35 AC 39 ms
51,584 KB
testcase_36 AC 40 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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