結果

問題 No.1995 CHIKA Road
ユーザー lllllll88938494lllllll88938494
提出日時 2023-05-05 18:55:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 377 ms / 2,000 ms
コード長 274 bytes
コンパイル時間 460 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 87,680 KB
最終ジャッジ日時 2024-05-02 13:28:03
合計ジャッジ時間 9,202 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 35 ms
51,712 KB
testcase_02 AC 35 ms
52,224 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 AC 40 ms
52,480 KB
testcase_06 AC 96 ms
76,928 KB
testcase_07 AC 149 ms
78,720 KB
testcase_08 AC 39 ms
52,992 KB
testcase_09 AC 37 ms
52,608 KB
testcase_10 AC 377 ms
87,680 KB
testcase_11 AC 359 ms
87,388 KB
testcase_12 AC 370 ms
87,168 KB
testcase_13 AC 161 ms
80,000 KB
testcase_14 AC 160 ms
80,000 KB
testcase_15 AC 320 ms
86,400 KB
testcase_16 AC 104 ms
77,184 KB
testcase_17 AC 236 ms
83,200 KB
testcase_18 AC 358 ms
87,296 KB
testcase_19 AC 362 ms
87,424 KB
testcase_20 AC 220 ms
82,304 KB
testcase_21 AC 207 ms
82,048 KB
testcase_22 AC 344 ms
86,784 KB
testcase_23 AC 148 ms
79,232 KB
testcase_24 AC 315 ms
85,632 KB
testcase_25 AC 121 ms
78,464 KB
testcase_26 AC 161 ms
80,256 KB
testcase_27 AC 305 ms
85,120 KB
testcase_28 AC 204 ms
81,920 KB
testcase_29 AC 352 ms
86,912 KB
testcase_30 AC 111 ms
77,056 KB
testcase_31 AC 89 ms
76,928 KB
testcase_32 AC 126 ms
78,720 KB
testcase_33 AC 296 ms
84,736 KB
testcase_34 AC 93 ms
77,056 KB
testcase_35 AC 154 ms
79,616 KB
testcase_36 AC 172 ms
80,384 KB
testcase_37 AC 341 ms
86,656 KB
testcase_38 AC 253 ms
83,200 KB
testcase_39 AC 92 ms
76,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
ms = [list(map(int,input().split())) for i in range(m)]


ms.sort(reverse = True)
now = n
ans = 0
for s,t in ms:
    if now >= t:
        ans += (now - t)*2
        now = s
        ans += t*2 - s*2 - 1

ans+=(now-1)*2

print(ans)
        
    
0