結果

問題 No.1995 CHIKA Road
ユーザー ニックネームニックネーム
提出日時 2022-07-01 21:54:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 394 ms / 2,000 ms
コード長 205 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 25,824 KB
最終ジャッジ日時 2024-05-04 16:19:10
合計ジャッジ時間 8,563 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 27 ms
10,880 KB
testcase_05 AC 27 ms
10,880 KB
testcase_06 AC 57 ms
11,776 KB
testcase_07 AC 128 ms
14,592 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 26 ms
10,880 KB
testcase_10 AC 383 ms
21,996 KB
testcase_11 AC 394 ms
25,824 KB
testcase_12 AC 363 ms
24,960 KB
testcase_13 AC 139 ms
15,616 KB
testcase_14 AC 148 ms
16,000 KB
testcase_15 AC 333 ms
24,296 KB
testcase_16 AC 72 ms
12,544 KB
testcase_17 AC 231 ms
18,864 KB
testcase_18 AC 391 ms
24,448 KB
testcase_19 AC 381 ms
24,456 KB
testcase_20 AC 229 ms
18,372 KB
testcase_21 AC 199 ms
17,408 KB
testcase_22 AC 365 ms
23,748 KB
testcase_23 AC 127 ms
14,720 KB
testcase_24 AC 325 ms
22,176 KB
testcase_25 AC 86 ms
13,056 KB
testcase_26 AC 141 ms
15,360 KB
testcase_27 AC 302 ms
21,600 KB
testcase_28 AC 199 ms
17,408 KB
testcase_29 AC 369 ms
24,060 KB
testcase_30 AC 78 ms
12,800 KB
testcase_31 AC 51 ms
11,648 KB
testcase_32 AC 103 ms
13,568 KB
testcase_33 AC 294 ms
21,320 KB
testcase_34 AC 54 ms
11,904 KB
testcase_35 AC 137 ms
15,104 KB
testcase_36 AC 167 ms
15,736 KB
testcase_37 AC 369 ms
23,460 KB
testcase_38 AC 248 ms
19,476 KB
testcase_39 AC 50 ms
11,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
ab = [tuple(map(int, input().split())) for _ in range(m)]
ab.sort(key=lambda x: x[1])
i = 1; count = 0
for a, b in ab:
    if i <= a: i = b; count += 1
print(2*(n-1)-count)
0