結果

問題 No.1995 CHIKA Road
ユーザー lllllll88938494lllllll88938494
提出日時 2023-05-05 18:55:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 469 ms / 2,000 ms
コード長 274 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 87,832 KB
最終ジャッジ日時 2024-11-23 03:33:49
合計ジャッジ時間 10,313 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,904 KB
testcase_01 AC 38 ms
51,940 KB
testcase_02 AC 40 ms
52,064 KB
testcase_03 AC 39 ms
52,480 KB
testcase_04 AC 39 ms
53,168 KB
testcase_05 AC 40 ms
53,292 KB
testcase_06 AC 94 ms
77,124 KB
testcase_07 AC 158 ms
78,888 KB
testcase_08 AC 41 ms
53,720 KB
testcase_09 AC 42 ms
54,760 KB
testcase_10 AC 443 ms
87,832 KB
testcase_11 AC 428 ms
87,516 KB
testcase_12 AC 439 ms
87,636 KB
testcase_13 AC 173 ms
80,128 KB
testcase_14 AC 185 ms
80,056 KB
testcase_15 AC 388 ms
86,116 KB
testcase_16 AC 109 ms
77,156 KB
testcase_17 AC 306 ms
83,056 KB
testcase_18 AC 469 ms
87,012 KB
testcase_19 AC 449 ms
87,620 KB
testcase_20 AC 258 ms
82,384 KB
testcase_21 AC 238 ms
81,608 KB
testcase_22 AC 417 ms
86,824 KB
testcase_23 AC 160 ms
79,312 KB
testcase_24 AC 375 ms
85,740 KB
testcase_25 AC 128 ms
78,192 KB
testcase_26 AC 180 ms
79,788 KB
testcase_27 AC 359 ms
85,660 KB
testcase_28 AC 238 ms
81,876 KB
testcase_29 AC 424 ms
86,980 KB
testcase_30 AC 118 ms
76,696 KB
testcase_31 AC 91 ms
77,124 KB
testcase_32 AC 134 ms
78,832 KB
testcase_33 AC 345 ms
84,824 KB
testcase_34 AC 92 ms
76,756 KB
testcase_35 AC 172 ms
79,852 KB
testcase_36 AC 197 ms
80,256 KB
testcase_37 AC 418 ms
86,644 KB
testcase_38 AC 301 ms
83,496 KB
testcase_39 AC 90 ms
77,036 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