結果

問題 No.1557 Binary Variable
ユーザー 👑 rin204rin204
提出日時 2021-12-13 01:46:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 505 ms / 2,000 ms
コード長 198 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 107,812 KB
最終ジャッジ日時 2024-07-21 15:23:30
合計ジャッジ時間 17,287 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 242 ms
96,004 KB
testcase_01 AC 258 ms
102,432 KB
testcase_02 AC 36 ms
51,712 KB
testcase_03 AC 36 ms
52,096 KB
testcase_04 AC 343 ms
97,644 KB
testcase_05 AC 343 ms
97,560 KB
testcase_06 AC 328 ms
97,640 KB
testcase_07 AC 334 ms
97,536 KB
testcase_08 AC 390 ms
97,664 KB
testcase_09 AC 403 ms
97,652 KB
testcase_10 AC 434 ms
97,664 KB
testcase_11 AC 428 ms
97,392 KB
testcase_12 AC 380 ms
97,500 KB
testcase_13 AC 434 ms
97,664 KB
testcase_14 AC 446 ms
97,024 KB
testcase_15 AC 439 ms
97,280 KB
testcase_16 AC 445 ms
97,200 KB
testcase_17 AC 449 ms
97,492 KB
testcase_18 AC 448 ms
97,408 KB
testcase_19 AC 505 ms
107,264 KB
testcase_20 AC 487 ms
107,772 KB
testcase_21 AC 476 ms
107,684 KB
testcase_22 AC 487 ms
107,420 KB
testcase_23 AC 481 ms
107,812 KB
testcase_24 AC 479 ms
104,312 KB
testcase_25 AC 489 ms
105,200 KB
testcase_26 AC 481 ms
102,548 KB
testcase_27 AC 474 ms
101,496 KB
testcase_28 AC 458 ms
100,588 KB
testcase_29 AC 463 ms
98,772 KB
testcase_30 AC 452 ms
99,244 KB
testcase_31 AC 455 ms
98,364 KB
testcase_32 AC 446 ms
99,004 KB
testcase_33 AC 431 ms
98,124 KB
testcase_34 AC 36 ms
52,988 KB
testcase_35 AC 34 ms
52,756 KB
testcase_36 AC 36 ms
52,748 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])
bef = 0
for l, r in lr:
    if l > bef:
        bef = r
        n -= 1
print(n)
0