結果

問題 No.1557 Binary Variable
ユーザー SidewaysOwlSidewaysOwl
提出日時 2021-10-20 17:51:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 839 ms / 2,000 ms
コード長 244 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 117,740 KB
最終ジャッジ日時 2024-09-20 06:39:38
合計ジャッジ時間 24,086 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 254 ms
115,420 KB
testcase_01 AC 274 ms
114,716 KB
testcase_02 AC 36 ms
52,868 KB
testcase_03 AC 36 ms
52,880 KB
testcase_04 AC 515 ms
116,768 KB
testcase_05 AC 488 ms
116,776 KB
testcase_06 AC 462 ms
116,680 KB
testcase_07 AC 485 ms
116,920 KB
testcase_08 AC 630 ms
116,692 KB
testcase_09 AC 661 ms
116,932 KB
testcase_10 AC 743 ms
116,888 KB
testcase_11 AC 746 ms
117,396 KB
testcase_12 AC 627 ms
116,820 KB
testcase_13 AC 762 ms
116,760 KB
testcase_14 AC 746 ms
116,676 KB
testcase_15 AC 839 ms
116,888 KB
testcase_16 AC 740 ms
116,788 KB
testcase_17 AC 752 ms
116,552 KB
testcase_18 AC 761 ms
116,680 KB
testcase_19 AC 739 ms
116,308 KB
testcase_20 AC 749 ms
116,192 KB
testcase_21 AC 742 ms
116,336 KB
testcase_22 AC 737 ms
116,292 KB
testcase_23 AC 756 ms
116,196 KB
testcase_24 AC 771 ms
116,436 KB
testcase_25 AC 802 ms
116,088 KB
testcase_26 AC 752 ms
116,768 KB
testcase_27 AC 762 ms
116,464 KB
testcase_28 AC 751 ms
116,412 KB
testcase_29 AC 758 ms
117,740 KB
testcase_30 AC 742 ms
116,612 KB
testcase_31 AC 754 ms
117,732 KB
testcase_32 AC 732 ms
116,752 KB
testcase_33 AC 750 ms
116,360 KB
testcase_34 AC 35 ms
53,008 KB
testcase_35 AC 35 ms
52,020 KB
testcase_36 AC 36 ms
52,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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