結果

問題 No.1557 Binary Variable
ユーザー flippergoflippergo
提出日時 2024-12-30 10:40:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 523 ms / 2,000 ms
コード長 267 bytes
コンパイル時間 998 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 92,668 KB
最終ジャッジ日時 2024-12-30 10:41:18
合計ジャッジ時間 20,587 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 342 ms
88,980 KB
testcase_01 AC 411 ms
89,240 KB
testcase_02 AC 46 ms
52,096 KB
testcase_03 AC 46 ms
52,608 KB
testcase_04 AC 495 ms
90,812 KB
testcase_05 AC 488 ms
90,408 KB
testcase_06 AC 512 ms
91,096 KB
testcase_07 AC 488 ms
91,972 KB
testcase_08 AC 481 ms
91,584 KB
testcase_09 AC 505 ms
91,604 KB
testcase_10 AC 454 ms
90,280 KB
testcase_11 AC 482 ms
91,908 KB
testcase_12 AC 510 ms
91,608 KB
testcase_13 AC 476 ms
91,660 KB
testcase_14 AC 489 ms
91,540 KB
testcase_15 AC 491 ms
91,300 KB
testcase_16 AC 458 ms
91,680 KB
testcase_17 AC 489 ms
90,316 KB
testcase_18 AC 463 ms
91,128 KB
testcase_19 AC 492 ms
92,064 KB
testcase_20 AC 458 ms
92,200 KB
testcase_21 AC 472 ms
92,196 KB
testcase_22 AC 469 ms
91,932 KB
testcase_23 AC 497 ms
92,180 KB
testcase_24 AC 466 ms
92,288 KB
testcase_25 AC 493 ms
92,416 KB
testcase_26 AC 466 ms
92,032 KB
testcase_27 AC 475 ms
92,284 KB
testcase_28 AC 482 ms
92,668 KB
testcase_29 AC 523 ms
91,464 KB
testcase_30 AC 481 ms
90,964 KB
testcase_31 AC 466 ms
91,332 KB
testcase_32 AC 461 ms
91,376 KB
testcase_33 AC 508 ms
92,204 KB
testcase_34 AC 45 ms
51,968 KB
testcase_35 AC 48 ms
52,224 KB
testcase_36 AC 45 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
import heapq
heap = []
for _ in range(M):
    l,r = map(int,input().split())
    heapq.heappush(heap,(r,l))
cnt = 0
cur = -1
while heap:
    r,l = heapq.heappop(heap)
    if l<=cur:
        continue
    cur = r
    cnt += 1
print(N-cnt)
0