結果

問題 No.1557 Binary Variable
ユーザー brthyyjpbrthyyjp
提出日時 2021-06-27 16:40:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 435 ms / 2,000 ms
コード長 276 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 97,812 KB
最終ジャッジ日時 2024-06-25 11:51:45
合計ジャッジ時間 14,382 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 194 ms
87,572 KB
testcase_01 AC 204 ms
90,860 KB
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 37 ms
51,968 KB
testcase_04 AC 287 ms
88,896 KB
testcase_05 AC 283 ms
89,156 KB
testcase_06 AC 268 ms
87,576 KB
testcase_07 AC 275 ms
88,772 KB
testcase_08 AC 335 ms
88,728 KB
testcase_09 AC 348 ms
88,588 KB
testcase_10 AC 378 ms
88,292 KB
testcase_11 AC 374 ms
88,292 KB
testcase_12 AC 326 ms
88,600 KB
testcase_13 AC 376 ms
88,288 KB
testcase_14 AC 413 ms
97,812 KB
testcase_15 AC 381 ms
88,284 KB
testcase_16 AC 396 ms
89,492 KB
testcase_17 AC 394 ms
88,852 KB
testcase_18 AC 391 ms
88,600 KB
testcase_19 AC 413 ms
95,892 KB
testcase_20 AC 423 ms
96,400 KB
testcase_21 AC 423 ms
96,400 KB
testcase_22 AC 435 ms
95,748 KB
testcase_23 AC 426 ms
96,136 KB
testcase_24 AC 424 ms
92,516 KB
testcase_25 AC 423 ms
93,424 KB
testcase_26 AC 402 ms
91,060 KB
testcase_27 AC 420 ms
90,136 KB
testcase_28 AC 390 ms
88,572 KB
testcase_29 AC 394 ms
88,656 KB
testcase_30 AC 392 ms
88,540 KB
testcase_31 AC 388 ms
88,656 KB
testcase_32 AC 402 ms
88,544 KB
testcase_33 AC 435 ms
96,908 KB
testcase_34 AC 38 ms
51,968 KB
testcase_35 AC 37 ms
51,968 KB
testcase_36 AC 37 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
LR = []
for i in range(m):
    l, r = map(int, input().split())
    l, r = l-1, r-1
    LR.append((l, r))

LR.sort(key=lambda x: x[1])
cnt = 0
curR = -1
for l, r in LR:
    if l <= curR:
        continue
    curR = r
    cnt += 1
print(n-cnt)
0