結果

問題 No.1995 CHIKA Road
ユーザー nohakai3nohakai3
提出日時 2022-07-25 16:07:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 496 ms / 2,000 ms
コード長 235 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 31,616 KB
最終ジャッジ日時 2024-07-07 15:16:40
合計ジャッジ時間 11,834 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 41 ms
10,496 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 29 ms
10,496 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,496 KB
testcase_06 AC 62 ms
12,032 KB
testcase_07 AC 144 ms
15,952 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 30 ms
10,496 KB
testcase_10 AC 441 ms
28,100 KB
testcase_11 AC 496 ms
31,616 KB
testcase_12 AC 408 ms
31,104 KB
testcase_13 AC 168 ms
17,656 KB
testcase_14 AC 175 ms
17,888 KB
testcase_15 AC 429 ms
29,112 KB
testcase_16 AC 84 ms
13,056 KB
testcase_17 AC 286 ms
22,308 KB
testcase_18 AC 486 ms
30,128 KB
testcase_19 AC 483 ms
30,132 KB
testcase_20 AC 263 ms
21,112 KB
testcase_21 AC 239 ms
20,172 KB
testcase_22 AC 462 ms
29,132 KB
testcase_23 AC 152 ms
16,312 KB
testcase_24 AC 393 ms
26,852 KB
testcase_25 AC 100 ms
13,952 KB
testcase_26 AC 168 ms
17,216 KB
testcase_27 AC 379 ms
26,128 KB
testcase_28 AC 239 ms
20,148 KB
testcase_29 AC 469 ms
29,448 KB
testcase_30 AC 93 ms
13,696 KB
testcase_31 AC 59 ms
11,904 KB
testcase_32 AC 115 ms
14,564 KB
testcase_33 AC 370 ms
25,804 KB
testcase_34 AC 65 ms
12,032 KB
testcase_35 AC 161 ms
16,768 KB
testcase_36 AC 186 ms
17,668 KB
testcase_37 AC 452 ms
28,764 KB
testcase_38 AC 306 ms
23,128 KB
testcase_39 AC 59 ms
12,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
from operator import itemgetter
p=[list(map(int,input().split())) for i in [0]*m]
p.sort(key=itemgetter(1))

now=0
ans=2*(n-1)
for l,r in p:
    if (now>l):
        continue
    now=r
    ans-=1

print(ans)
0