結果

問題 No.1557 Binary Variable
ユーザー ntudantuda
提出日時 2021-09-08 22:04:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 261 ms / 2,000 ms
コード長 302 bytes
コンパイル時間 597 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 99,008 KB
最終ジャッジ日時 2024-06-08 03:12:40
合計ジャッジ時間 12,662 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 240 ms
97,280 KB
testcase_01 AC 248 ms
98,348 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 37 ms
52,336 KB
testcase_04 AC 245 ms
97,664 KB
testcase_05 AC 244 ms
97,664 KB
testcase_06 AC 254 ms
97,920 KB
testcase_07 AC 243 ms
98,176 KB
testcase_08 AC 253 ms
98,304 KB
testcase_09 AC 249 ms
98,176 KB
testcase_10 AC 259 ms
98,816 KB
testcase_11 AC 255 ms
98,304 KB
testcase_12 AC 254 ms
98,816 KB
testcase_13 AC 255 ms
98,816 KB
testcase_14 AC 256 ms
97,608 KB
testcase_15 AC 259 ms
98,304 KB
testcase_16 AC 246 ms
97,408 KB
testcase_17 AC 254 ms
97,408 KB
testcase_18 AC 258 ms
98,432 KB
testcase_19 AC 255 ms
98,176 KB
testcase_20 AC 256 ms
99,008 KB
testcase_21 AC 250 ms
98,544 KB
testcase_22 AC 245 ms
98,048 KB
testcase_23 AC 256 ms
98,668 KB
testcase_24 AC 246 ms
98,688 KB
testcase_25 AC 257 ms
98,612 KB
testcase_26 AC 250 ms
98,420 KB
testcase_27 AC 250 ms
98,816 KB
testcase_28 AC 250 ms
98,176 KB
testcase_29 AC 256 ms
99,008 KB
testcase_30 AC 257 ms
98,428 KB
testcase_31 AC 256 ms
98,432 KB
testcase_32 AC 261 ms
98,356 KB
testcase_33 AC 255 ms
98,784 KB
testcase_34 AC 38 ms
51,584 KB
testcase_35 AC 38 ms
51,840 KB
testcase_36 AC 38 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
LR = [list(map(int,input().split())) for _ in range(M)]
LR.sort()
LR.append([10**9+1,10**9+2])
cnt = 0
lc = 0
rmin = 10**10
for l,r in LR:
    if lc < l:
        lc = l
        rmin = min(r,rmin)
        if l > rmin:
            cnt += 1
            rmin = r
print(N-cnt)
0