結果

問題 No.1995 CHIKA Road
ユーザー trineutrontrineutron
提出日時 2022-07-01 21:36:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 425 ms / 2,000 ms
コード長 268 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 26,464 KB
最終ジャッジ日時 2024-11-26 04:15:42
合計ジャッジ時間 9,505 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 28 ms
10,496 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 60 ms
11,648 KB
testcase_07 AC 137 ms
14,720 KB
testcase_08 AC 29 ms
10,624 KB
testcase_09 AC 28 ms
10,752 KB
testcase_10 AC 391 ms
22,736 KB
testcase_11 AC 405 ms
26,464 KB
testcase_12 AC 361 ms
25,344 KB
testcase_13 AC 155 ms
16,000 KB
testcase_14 AC 153 ms
16,256 KB
testcase_15 AC 360 ms
24,548 KB
testcase_16 AC 77 ms
12,544 KB
testcase_17 AC 256 ms
19,064 KB
testcase_18 AC 402 ms
25,352 KB
testcase_19 AC 425 ms
25,104 KB
testcase_20 AC 232 ms
18,640 KB
testcase_21 AC 208 ms
17,664 KB
testcase_22 AC 393 ms
24,356 KB
testcase_23 AC 137 ms
14,976 KB
testcase_24 AC 355 ms
22,696 KB
testcase_25 AC 94 ms
12,928 KB
testcase_26 AC 157 ms
15,488 KB
testcase_27 AC 342 ms
22,168 KB
testcase_28 AC 219 ms
17,536 KB
testcase_29 AC 419 ms
24,684 KB
testcase_30 AC 89 ms
12,800 KB
testcase_31 AC 57 ms
11,520 KB
testcase_32 AC 108 ms
13,568 KB
testcase_33 AC 326 ms
21,924 KB
testcase_34 AC 61 ms
11,776 KB
testcase_35 AC 148 ms
15,104 KB
testcase_36 AC 173 ms
16,000 KB
testcase_37 AC 412 ms
24,180 KB
testcase_38 AC 279 ms
19,844 KB
testcase_39 AC 56 ms
11,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
segs = [None] * m
for i in range(m):
    segs[i] = tuple(map(int, input().split()))
segs = sorted(segs, key=lambda x: x[1])
ans = 0
r = -1
for seg in segs:
    if r <= seg[0]:
        ans += 1
        r = seg[1]
print(2 * n - 2 - ans)
0