結果

問題 No.1557 Binary Variable
ユーザー Kiri8128Kiri8128
提出日時 2021-06-25 21:27:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 438 ms / 2,000 ms
コード長 241 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,060 KB
実行使用メモリ 97,804 KB
最終ジャッジ日時 2024-06-25 08:09:08
合計ジャッジ時間 14,179 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 190 ms
87,564 KB
testcase_01 AC 213 ms
88,976 KB
testcase_02 AC 38 ms
52,164 KB
testcase_03 AC 37 ms
52,112 KB
testcase_04 AC 283 ms
88,520 KB
testcase_05 AC 280 ms
88,888 KB
testcase_06 AC 267 ms
87,712 KB
testcase_07 AC 274 ms
87,696 KB
testcase_08 AC 328 ms
88,608 KB
testcase_09 AC 341 ms
88,708 KB
testcase_10 AC 368 ms
88,696 KB
testcase_11 AC 375 ms
88,436 KB
testcase_12 AC 327 ms
88,608 KB
testcase_13 AC 379 ms
88,436 KB
testcase_14 AC 403 ms
97,804 KB
testcase_15 AC 380 ms
88,672 KB
testcase_16 AC 397 ms
88,456 KB
testcase_17 AC 392 ms
88,460 KB
testcase_18 AC 392 ms
88,588 KB
testcase_19 AC 428 ms
95,504 KB
testcase_20 AC 434 ms
96,140 KB
testcase_21 AC 438 ms
96,400 KB
testcase_22 AC 427 ms
95,760 KB
testcase_23 AC 434 ms
96,404 KB
testcase_24 AC 429 ms
92,784 KB
testcase_25 AC 428 ms
93,696 KB
testcase_26 AC 417 ms
90,820 KB
testcase_27 AC 416 ms
90,264 KB
testcase_28 AC 406 ms
88,688 KB
testcase_29 AC 397 ms
88,544 KB
testcase_30 AC 395 ms
88,548 KB
testcase_31 AC 391 ms
88,532 KB
testcase_32 AC 392 ms
88,552 KB
testcase_33 AC 430 ms
96,920 KB
testcase_34 AC 38 ms
52,604 KB
testcase_35 AC 38 ms
53,044 KB
testcase_36 AC 37 ms
52,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
X = []
for _ in range(M):
    l, r = map(int, input().split())
    X.append((l, r))

X.sort(key = lambda x: x[1])
ans = 0
ma = -1
for l, r in X:
    if ma >= l: continue
    ans += 1
    ma = r
print(N - ans)
0