結果

問題 No.1557 Binary Variable
ユーザー KudeKude
提出日時 2021-06-25 21:25:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 563 ms / 2,000 ms
コード長 229 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 103,692 KB
最終ジャッジ日時 2024-06-25 08:08:11
合計ジャッジ時間 17,748 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 264 ms
102,056 KB
testcase_01 AC 267 ms
102,456 KB
testcase_02 AC 37 ms
51,892 KB
testcase_03 AC 38 ms
52,796 KB
testcase_04 AC 372 ms
103,320 KB
testcase_05 AC 381 ms
103,140 KB
testcase_06 AC 352 ms
102,652 KB
testcase_07 AC 367 ms
103,444 KB
testcase_08 AC 441 ms
103,484 KB
testcase_09 AC 455 ms
103,288 KB
testcase_10 AC 492 ms
103,692 KB
testcase_11 AC 485 ms
103,480 KB
testcase_12 AC 445 ms
103,320 KB
testcase_13 AC 507 ms
103,132 KB
testcase_14 AC 509 ms
103,176 KB
testcase_15 AC 508 ms
103,236 KB
testcase_16 AC 510 ms
103,176 KB
testcase_17 AC 522 ms
103,320 KB
testcase_18 AC 563 ms
103,064 KB
testcase_19 AC 523 ms
103,456 KB
testcase_20 AC 521 ms
103,088 KB
testcase_21 AC 522 ms
102,964 KB
testcase_22 AC 525 ms
102,944 KB
testcase_23 AC 521 ms
103,032 KB
testcase_24 AC 513 ms
102,740 KB
testcase_25 AC 522 ms
103,012 KB
testcase_26 AC 523 ms
102,836 KB
testcase_27 AC 520 ms
103,012 KB
testcase_28 AC 525 ms
102,176 KB
testcase_29 AC 526 ms
102,540 KB
testcase_30 AC 526 ms
102,292 KB
testcase_31 AC 518 ms
102,912 KB
testcase_32 AC 536 ms
102,460 KB
testcase_33 AC 507 ms
103,236 KB
testcase_34 AC 39 ms
52,484 KB
testcase_35 AC 38 ms
52,832 KB
testcase_36 AC 39 ms
53,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
rightmost = -1
ans = n
lr = sorted((tuple(map(int, input().split())) for _ in range(m)), key=lambda x: x[1])
for l, r in lr:
    if l > rightmost:
        ans -= 1
        rightmost = r
print(ans)
0