結果

問題 No.1557 Binary Variable
ユーザー hiro1729hiro1729
提出日時 2024-06-02 18:16:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 682 ms / 2,000 ms
コード長 200 bytes
コンパイル時間 1,068 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 89,148 KB
最終ジャッジ日時 2024-06-02 18:17:00
合計ジャッジ時間 24,774 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 198 ms
87,688 KB
testcase_01 AC 225 ms
88,468 KB
testcase_02 AC 36 ms
51,584 KB
testcase_03 AC 36 ms
51,584 KB
testcase_04 AC 425 ms
88,772 KB
testcase_05 AC 453 ms
89,148 KB
testcase_06 AC 388 ms
87,620 KB
testcase_07 AC 403 ms
87,856 KB
testcase_08 AC 567 ms
88,604 KB
testcase_09 AC 578 ms
88,848 KB
testcase_10 AC 665 ms
88,696 KB
testcase_11 AC 640 ms
88,816 KB
testcase_12 AC 560 ms
88,868 KB
testcase_13 AC 644 ms
88,824 KB
testcase_14 AC 671 ms
88,844 KB
testcase_15 AC 642 ms
88,784 KB
testcase_16 AC 675 ms
88,848 KB
testcase_17 AC 642 ms
88,720 KB
testcase_18 AC 670 ms
88,848 KB
testcase_19 AC 680 ms
88,848 KB
testcase_20 AC 657 ms
88,844 KB
testcase_21 AC 674 ms
88,840 KB
testcase_22 AC 646 ms
88,852 KB
testcase_23 AC 668 ms
88,844 KB
testcase_24 AC 650 ms
88,688 KB
testcase_25 AC 677 ms
88,840 KB
testcase_26 AC 645 ms
88,772 KB
testcase_27 AC 682 ms
88,736 KB
testcase_28 AC 640 ms
88,696 KB
testcase_29 AC 673 ms
88,660 KB
testcase_30 AC 645 ms
88,680 KB
testcase_31 AC 671 ms
88,656 KB
testcase_32 AC 646 ms
88,680 KB
testcase_33 AC 655 ms
88,976 KB
testcase_34 AC 35 ms
51,456 KB
testcase_35 AC 36 ms
51,584 KB
testcase_36 AC 37 ms
51,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
LR = []
for _ in range(M):
	L, R = map(int, input().split())
	LR.append((R, L))
LR.sort()
ans = 0
nr = 0
for r, l in LR:
	if l > nr:
		nr = r
		ans += 1
print(N - ans)
0