結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 24 ms
10,752 KB
testcase_03 AC 24 ms
10,752 KB
testcase_04 AC 26 ms
10,624 KB
testcase_05 AC 24 ms
10,752 KB
testcase_06 AC 52 ms
11,776 KB
testcase_07 AC 120 ms
14,720 KB
testcase_08 AC 27 ms
10,880 KB
testcase_09 AC 25 ms
10,752 KB
testcase_10 AC 356 ms
22,864 KB
testcase_11 AC 373 ms
26,596 KB
testcase_12 AC 336 ms
25,600 KB
testcase_13 AC 139 ms
16,128 KB
testcase_14 AC 146 ms
16,256 KB
testcase_15 AC 343 ms
24,800 KB
testcase_16 AC 73 ms
12,544 KB
testcase_17 AC 240 ms
19,452 KB
testcase_18 AC 370 ms
25,356 KB
testcase_19 AC 371 ms
25,232 KB
testcase_20 AC 211 ms
18,636 KB
testcase_21 AC 197 ms
18,048 KB
testcase_22 AC 353 ms
24,484 KB
testcase_23 AC 125 ms
14,976 KB
testcase_24 AC 327 ms
22,828 KB
testcase_25 AC 87 ms
13,184 KB
testcase_26 AC 142 ms
15,616 KB
testcase_27 AC 301 ms
22,296 KB
testcase_28 AC 194 ms
17,792 KB
testcase_29 AC 362 ms
24,944 KB
testcase_30 AC 80 ms
12,928 KB
testcase_31 AC 51 ms
11,776 KB
testcase_32 AC 98 ms
13,824 KB
testcase_33 AC 294 ms
22,000 KB
testcase_34 AC 55 ms
11,904 KB
testcase_35 AC 136 ms
15,488 KB
testcase_36 AC 164 ms
16,256 KB
testcase_37 AC 349 ms
24,180 KB
testcase_38 AC 247 ms
19,976 KB
testcase_39 AC 50 ms
11,776 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