結果

問題 No.1557 Binary Variable
ユーザー H20H20
提出日時 2021-06-25 23:17:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 397 ms / 2,000 ms
コード長 305 bytes
コンパイル時間 1,463 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 101,340 KB
最終ジャッジ日時 2024-06-25 08:52:23
合計ジャッジ時間 14,520 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 198 ms
96,564 KB
testcase_01 AC 198 ms
96,728 KB
testcase_02 AC 35 ms
52,964 KB
testcase_03 AC 37 ms
52,148 KB
testcase_04 AC 306 ms
100,212 KB
testcase_05 AC 300 ms
100,420 KB
testcase_06 AC 285 ms
101,340 KB
testcase_07 AC 295 ms
100,776 KB
testcase_08 AC 356 ms
98,724 KB
testcase_09 AC 370 ms
98,372 KB
testcase_10 AC 385 ms
98,068 KB
testcase_11 AC 379 ms
97,752 KB
testcase_12 AC 346 ms
98,604 KB
testcase_13 AC 382 ms
97,908 KB
testcase_14 AC 385 ms
97,804 KB
testcase_15 AC 379 ms
98,136 KB
testcase_16 AC 395 ms
97,668 KB
testcase_17 AC 383 ms
98,124 KB
testcase_18 AC 388 ms
98,124 KB
testcase_19 AC 379 ms
97,680 KB
testcase_20 AC 390 ms
97,988 KB
testcase_21 AC 390 ms
97,824 KB
testcase_22 AC 388 ms
97,920 KB
testcase_23 AC 390 ms
97,916 KB
testcase_24 AC 389 ms
97,984 KB
testcase_25 AC 388 ms
97,692 KB
testcase_26 AC 397 ms
98,036 KB
testcase_27 AC 392 ms
97,884 KB
testcase_28 AC 394 ms
98,036 KB
testcase_29 AC 393 ms
97,692 KB
testcase_30 AC 391 ms
97,772 KB
testcase_31 AC 394 ms
98,000 KB
testcase_32 AC 393 ms
98,064 KB
testcase_33 AC 390 ms
97,948 KB
testcase_34 AC 37 ms
52,616 KB
testcase_35 AC 37 ms
53,112 KB
testcase_36 AC 38 ms
52,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int, input().split())
L = [[0] * 2 for i in range(M)]
for i in range(M):
    L[i][0],L[i][1]=map(int, input().split())
L = sorted(L, key=lambda x: x[1])  #[1]に注目してソート
ans = N
temp = -1
for lr in L:
    l=lr[0]
    r=lr[1]
    if temp<l:
        temp=r
        ans-=1
print(ans)

0