結果

問題 No.1557 Binary Variable
ユーザー minimumminimum
提出日時 2021-06-25 21:31:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 515 ms / 2,000 ms
コード長 237 bytes
コンパイル時間 437 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 108,244 KB
最終ジャッジ日時 2024-06-25 08:12:54
合計ジャッジ時間 17,460 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 297 ms
108,112 KB
testcase_01 AC 286 ms
105,116 KB
testcase_02 AC 38 ms
52,076 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 392 ms
106,276 KB
testcase_05 AC 392 ms
106,660 KB
testcase_06 AC 381 ms
108,244 KB
testcase_07 AC 386 ms
107,112 KB
testcase_08 AC 425 ms
105,936 KB
testcase_09 AC 443 ms
106,064 KB
testcase_10 AC 467 ms
105,632 KB
testcase_11 AC 473 ms
106,012 KB
testcase_12 AC 423 ms
105,816 KB
testcase_13 AC 470 ms
106,012 KB
testcase_14 AC 504 ms
107,820 KB
testcase_15 AC 472 ms
105,748 KB
testcase_16 AC 502 ms
107,832 KB
testcase_17 AC 507 ms
106,540 KB
testcase_18 AC 515 ms
106,196 KB
testcase_19 AC 513 ms
105,660 KB
testcase_20 AC 507 ms
106,076 KB
testcase_21 AC 502 ms
106,216 KB
testcase_22 AC 504 ms
105,668 KB
testcase_23 AC 509 ms
105,960 KB
testcase_24 AC 481 ms
105,688 KB
testcase_25 AC 484 ms
105,460 KB
testcase_26 AC 482 ms
106,016 KB
testcase_27 AC 486 ms
105,996 KB
testcase_28 AC 480 ms
105,396 KB
testcase_29 AC 483 ms
106,804 KB
testcase_30 AC 482 ms
105,500 KB
testcase_31 AC 485 ms
106,984 KB
testcase_32 AC 489 ms
105,744 KB
testcase_33 AC 514 ms
106,248 KB
testcase_34 AC 39 ms
52,016 KB
testcase_35 AC 39 ms
51,584 KB
testcase_36 AC 38 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

r.sort()
r.sort(key = lambda x : x[1])

cnt = 0
z = -1
for x in r:
    if z < x[0]:
        cnt += 1
        z = x[1]
print(n - cnt)
0