結果

問題 No.1557 Binary Variable
ユーザー roarisroaris
提出日時 2021-07-03 14:00:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 194 ms / 2,000 ms
コード長 248 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,844 KB
実行使用メモリ 93,368 KB
最終ジャッジ日時 2024-06-30 05:54:09
合計ジャッジ時間 9,369 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 191 ms
92,420 KB
testcase_01 AC 187 ms
92,300 KB
testcase_02 AC 37 ms
52,092 KB
testcase_03 AC 37 ms
53,056 KB
testcase_04 AC 184 ms
92,992 KB
testcase_05 AC 180 ms
92,936 KB
testcase_06 AC 185 ms
93,356 KB
testcase_07 AC 177 ms
92,804 KB
testcase_08 AC 177 ms
92,828 KB
testcase_09 AC 175 ms
92,832 KB
testcase_10 AC 181 ms
92,740 KB
testcase_11 AC 187 ms
93,368 KB
testcase_12 AC 186 ms
92,804 KB
testcase_13 AC 190 ms
92,632 KB
testcase_14 AC 185 ms
92,512 KB
testcase_15 AC 180 ms
92,608 KB
testcase_16 AC 180 ms
92,500 KB
testcase_17 AC 193 ms
92,548 KB
testcase_18 AC 187 ms
93,044 KB
testcase_19 AC 194 ms
92,476 KB
testcase_20 AC 189 ms
92,556 KB
testcase_21 AC 184 ms
92,828 KB
testcase_22 AC 192 ms
92,208 KB
testcase_23 AC 186 ms
92,904 KB
testcase_24 AC 191 ms
92,580 KB
testcase_25 AC 189 ms
92,172 KB
testcase_26 AC 192 ms
92,252 KB
testcase_27 AC 192 ms
92,104 KB
testcase_28 AC 188 ms
92,100 KB
testcase_29 AC 188 ms
92,064 KB
testcase_30 AC 192 ms
91,984 KB
testcase_31 AC 190 ms
91,908 KB
testcase_32 AC 192 ms
91,888 KB
testcase_33 AC 184 ms
92,488 KB
testcase_34 AC 37 ms
53,036 KB
testcase_35 AC 38 ms
52,516 KB
testcase_36 AC 38 ms
52,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, M = map(int, input().split())
LR = [tuple(map(int, input().split())) for _ in range(M)]
LR.sort(reverse=True)
now = 10**18
ans = N

for L, R in LR:
    if R<now:
        ans -= 1
        now = L

print(ans)
0