結果

問題 No.1557 Binary Variable
ユーザー convexineqconvexineq
提出日時 2021-07-19 07:06:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 435 ms / 2,000 ms
コード長 208 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 107,604 KB
最終ジャッジ日時 2024-07-16 15:51:52
合計ジャッジ時間 15,917 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 214 ms
95,984 KB
testcase_01 AC 220 ms
102,200 KB
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 36 ms
51,968 KB
testcase_04 AC 294 ms
97,792 KB
testcase_05 AC 304 ms
97,408 KB
testcase_06 AC 280 ms
97,336 KB
testcase_07 AC 289 ms
97,528 KB
testcase_08 AC 358 ms
97,320 KB
testcase_09 AC 351 ms
97,536 KB
testcase_10 AC 405 ms
97,288 KB
testcase_11 AC 382 ms
97,280 KB
testcase_12 AC 325 ms
97,260 KB
testcase_13 AC 380 ms
97,280 KB
testcase_14 AC 376 ms
97,244 KB
testcase_15 AC 376 ms
97,152 KB
testcase_16 AC 384 ms
97,420 KB
testcase_17 AC 382 ms
97,164 KB
testcase_18 AC 402 ms
97,008 KB
testcase_19 AC 429 ms
107,068 KB
testcase_20 AC 432 ms
107,520 KB
testcase_21 AC 412 ms
107,392 KB
testcase_22 AC 425 ms
107,604 KB
testcase_23 AC 432 ms
107,400 KB
testcase_24 AC 421 ms
103,936 KB
testcase_25 AC 435 ms
104,864 KB
testcase_26 AC 416 ms
102,344 KB
testcase_27 AC 427 ms
101,372 KB
testcase_28 AC 413 ms
99,968 KB
testcase_29 AC 409 ms
98,396 KB
testcase_30 AC 424 ms
99,072 KB
testcase_31 AC 405 ms
98,320 KB
testcase_32 AC 421 ms
99,264 KB
testcase_33 AC 390 ms
97,968 KB
testcase_34 AC 35 ms
52,224 KB
testcase_35 AC 35 ms
52,224 KB
testcase_36 AC 36 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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