結果

問題 No.1557 Binary Variable
ユーザー gorugo30gorugo30
提出日時 2021-06-25 21:33:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 466 ms / 2,000 ms
コード長 269 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,004 KB
実行使用メモリ 107,908 KB
最終ジャッジ日時 2024-06-25 08:15:15
合計ジャッジ時間 15,174 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 225 ms
95,992 KB
testcase_01 AC 239 ms
102,400 KB
testcase_02 AC 35 ms
52,400 KB
testcase_03 AC 35 ms
52,096 KB
testcase_04 AC 319 ms
97,408 KB
testcase_05 AC 319 ms
97,580 KB
testcase_06 AC 309 ms
97,652 KB
testcase_07 AC 319 ms
97,924 KB
testcase_08 AC 367 ms
97,536 KB
testcase_09 AC 387 ms
97,704 KB
testcase_10 AC 415 ms
97,268 KB
testcase_11 AC 414 ms
97,324 KB
testcase_12 AC 364 ms
97,868 KB
testcase_13 AC 413 ms
97,264 KB
testcase_14 AC 421 ms
97,240 KB
testcase_15 AC 414 ms
97,336 KB
testcase_16 AC 424 ms
97,496 KB
testcase_17 AC 416 ms
97,628 KB
testcase_18 AC 426 ms
97,204 KB
testcase_19 AC 454 ms
107,376 KB
testcase_20 AC 461 ms
107,712 KB
testcase_21 AC 459 ms
107,644 KB
testcase_22 AC 466 ms
107,600 KB
testcase_23 AC 453 ms
107,908 KB
testcase_24 AC 464 ms
103,996 KB
testcase_25 AC 457 ms
105,112 KB
testcase_26 AC 450 ms
102,700 KB
testcase_27 AC 455 ms
101,448 KB
testcase_28 AC 448 ms
100,352 KB
testcase_29 AC 444 ms
98,644 KB
testcase_30 AC 445 ms
98,932 KB
testcase_31 AC 443 ms
98,272 KB
testcase_32 AC 433 ms
98,796 KB
testcase_33 AC 430 ms
98,272 KB
testcase_34 AC 36 ms
51,804 KB
testcase_35 AC 35 ms
52,224 KB
testcase_36 AC 36 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())

P = [list(map(int, input().split())) for i in range(M)]
P.sort(key = lambda x: x[1])

ans = N
last0 = 0
for i in range(M):
    l, r = P[i]
    if l <= last0 <= r:
        continue
    else:
        last0 = r
        ans -= 1
print(ans)
0