結果

問題 No.1557 Binary Variable
ユーザー hir355hir355
提出日時 2021-06-25 21:27:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 533 ms / 2,000 ms
コード長 204 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 81,964 KB
実行使用メモリ 107,740 KB
最終ジャッジ日時 2024-06-25 08:09:32
合計ジャッジ時間 16,851 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 270 ms
96,392 KB
testcase_01 AC 260 ms
102,336 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 36 ms
51,968 KB
testcase_04 AC 339 ms
97,564 KB
testcase_05 AC 346 ms
97,752 KB
testcase_06 AC 332 ms
98,048 KB
testcase_07 AC 337 ms
97,704 KB
testcase_08 AC 398 ms
97,664 KB
testcase_09 AC 411 ms
97,536 KB
testcase_10 AC 450 ms
97,684 KB
testcase_11 AC 449 ms
97,396 KB
testcase_12 AC 393 ms
97,536 KB
testcase_13 AC 459 ms
97,408 KB
testcase_14 AC 460 ms
97,408 KB
testcase_15 AC 445 ms
97,196 KB
testcase_16 AC 463 ms
97,552 KB
testcase_17 AC 455 ms
97,412 KB
testcase_18 AC 451 ms
97,204 KB
testcase_19 AC 526 ms
107,648 KB
testcase_20 AC 522 ms
107,572 KB
testcase_21 AC 507 ms
107,644 KB
testcase_22 AC 533 ms
107,740 KB
testcase_23 AC 506 ms
107,636 KB
testcase_24 AC 527 ms
103,936 KB
testcase_25 AC 506 ms
105,040 KB
testcase_26 AC 507 ms
102,040 KB
testcase_27 AC 492 ms
101,352 KB
testcase_28 AC 489 ms
100,096 KB
testcase_29 AC 491 ms
98,432 KB
testcase_30 AC 495 ms
99,392 KB
testcase_31 AC 484 ms
98,504 KB
testcase_32 AC 495 ms
98,912 KB
testcase_33 AC 466 ms
97,972 KB
testcase_34 AC 36 ms
51,840 KB
testcase_35 AC 37 ms
51,880 KB
testcase_36 AC 36 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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