結果

問題 No.1557 Binary Variable
ユーザー 👑 KazunKazun
提出日時 2021-06-25 21:27:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 489 ms / 2,000 ms
コード長 245 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 98,376 KB
最終ジャッジ日時 2024-06-25 08:08:43
合計ジャッジ時間 15,896 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 216 ms
96,396 KB
testcase_01 AC 230 ms
88,824 KB
testcase_02 AC 45 ms
53,760 KB
testcase_03 AC 43 ms
53,376 KB
testcase_04 AC 305 ms
88,724 KB
testcase_05 AC 305 ms
88,836 KB
testcase_06 AC 287 ms
88,716 KB
testcase_07 AC 296 ms
88,704 KB
testcase_08 AC 354 ms
88,776 KB
testcase_09 AC 371 ms
88,780 KB
testcase_10 AC 426 ms
98,084 KB
testcase_11 AC 433 ms
98,284 KB
testcase_12 AC 346 ms
88,904 KB
testcase_13 AC 422 ms
98,376 KB
testcase_14 AC 448 ms
97,392 KB
testcase_15 AC 445 ms
98,204 KB
testcase_16 AC 476 ms
97,268 KB
testcase_17 AC 481 ms
97,540 KB
testcase_18 AC 489 ms
97,412 KB
testcase_19 AC 467 ms
94,108 KB
testcase_20 AC 463 ms
94,912 KB
testcase_21 AC 459 ms
95,040 KB
testcase_22 AC 457 ms
94,640 KB
testcase_23 AC 458 ms
94,664 KB
testcase_24 AC 449 ms
91,168 KB
testcase_25 AC 452 ms
92,324 KB
testcase_26 AC 443 ms
89,128 KB
testcase_27 AC 417 ms
88,996 KB
testcase_28 AC 408 ms
88,792 KB
testcase_29 AC 421 ms
89,012 KB
testcase_30 AC 420 ms
89,164 KB
testcase_31 AC 408 ms
88,356 KB
testcase_32 AC 415 ms
89,160 KB
testcase_33 AC 461 ms
95,188 KB
testcase_34 AC 46 ms
53,504 KB
testcase_35 AC 45 ms
53,760 KB
testcase_36 AC 46 ms
53,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

N,M=map(int,input().split())


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

I.sort(key=lambda x:x[1])
R=-1
X=0

for l,r in I:
    if R<l:
        X+=1
        R=r

print(N-X)
0