結果

問題 No.1995 CHIKA Road
ユーザー H20H20
提出日時 2022-07-01 22:07:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 281 ms / 2,000 ms
コード長 209 bytes
コンパイル時間 442 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 92,160 KB
最終ジャッジ日時 2024-11-26 05:17:13
合計ジャッジ時間 7,669 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 41 ms
51,840 KB
testcase_04 AC 40 ms
52,352 KB
testcase_05 AC 42 ms
52,968 KB
testcase_06 AC 88 ms
76,892 KB
testcase_07 AC 127 ms
78,868 KB
testcase_08 AC 44 ms
52,992 KB
testcase_09 AC 44 ms
52,608 KB
testcase_10 AC 254 ms
89,028 KB
testcase_11 AC 266 ms
87,352 KB
testcase_12 AC 175 ms
86,920 KB
testcase_13 AC 136 ms
78,944 KB
testcase_14 AC 136 ms
79,148 KB
testcase_15 AC 244 ms
85,588 KB
testcase_16 AC 97 ms
76,860 KB
testcase_17 AC 200 ms
83,912 KB
testcase_18 AC 275 ms
88,064 KB
testcase_19 AC 272 ms
88,064 KB
testcase_20 AC 174 ms
81,332 KB
testcase_21 AC 163 ms
81,648 KB
testcase_22 AC 273 ms
92,160 KB
testcase_23 AC 126 ms
79,104 KB
testcase_24 AC 237 ms
85,756 KB
testcase_25 AC 102 ms
76,952 KB
testcase_26 AC 129 ms
79,276 KB
testcase_27 AC 227 ms
85,904 KB
testcase_28 AC 164 ms
81,488 KB
testcase_29 AC 281 ms
88,704 KB
testcase_30 AC 102 ms
76,964 KB
testcase_31 AC 93 ms
77,104 KB
testcase_32 AC 110 ms
77,444 KB
testcase_33 AC 237 ms
88,936 KB
testcase_34 AC 89 ms
76,752 KB
testcase_35 AC 129 ms
79,056 KB
testcase_36 AC 141 ms
79,288 KB
testcase_37 AC 258 ms
86,144 KB
testcase_38 AC 196 ms
83,364 KB
testcase_39 AC 86 ms
77,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int, input().split())
AB = [list(map(int, input().split())) for _ in range(M)]
AB = sorted(AB, key=lambda x: x[1])
v = 0
ans = 2*N-2
for a,b in AB:
    if v<=a:
        ans-=1
        v=b
print(ans)
0