結果

問題 No.1995 CHIKA Road
ユーザー DrDrpilotDrDrpilot
提出日時 2022-07-02 13:05:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 252 ms / 2,000 ms
コード長 237 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 91,008 KB
最終ジャッジ日時 2024-05-05 10:27:02
合計ジャッジ時間 7,531 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 36 ms
51,584 KB
testcase_02 AC 39 ms
51,584 KB
testcase_03 AC 36 ms
51,840 KB
testcase_04 AC 37 ms
51,968 KB
testcase_05 AC 40 ms
52,352 KB
testcase_06 AC 86 ms
77,312 KB
testcase_07 AC 120 ms
78,848 KB
testcase_08 AC 41 ms
53,120 KB
testcase_09 AC 39 ms
52,608 KB
testcase_10 AC 222 ms
87,808 KB
testcase_11 AC 237 ms
86,784 KB
testcase_12 AC 158 ms
86,400 KB
testcase_13 AC 134 ms
78,720 KB
testcase_14 AC 125 ms
78,976 KB
testcase_15 AC 238 ms
85,120 KB
testcase_16 AC 106 ms
77,056 KB
testcase_17 AC 183 ms
83,584 KB
testcase_18 AC 238 ms
87,168 KB
testcase_19 AC 243 ms
87,040 KB
testcase_20 AC 164 ms
81,280 KB
testcase_21 AC 154 ms
81,152 KB
testcase_22 AC 252 ms
91,008 KB
testcase_23 AC 116 ms
79,104 KB
testcase_24 AC 210 ms
85,120 KB
testcase_25 AC 98 ms
76,800 KB
testcase_26 AC 129 ms
78,976 KB
testcase_27 AC 206 ms
85,376 KB
testcase_28 AC 152 ms
81,024 KB
testcase_29 AC 242 ms
88,320 KB
testcase_30 AC 98 ms
76,928 KB
testcase_31 AC 86 ms
77,056 KB
testcase_32 AC 107 ms
77,056 KB
testcase_33 AC 210 ms
87,808 KB
testcase_34 AC 84 ms
77,312 KB
testcase_35 AC 127 ms
79,104 KB
testcase_36 AC 138 ms
78,848 KB
testcase_37 AC 242 ms
85,504 KB
testcase_38 AC 183 ms
82,816 KB
testcase_39 AC 97 ms
76,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
p=[list(map(int,input().split())) for _ in range(m)]
p.sort(key=lambda x:x[1])
now=1;cost=0
for a,b in p:
    if now>a:
        continue
    cost+=(a-now)*2
    cost+=(b-a)*2-1
    now=b
print(cost+(n-now)*2)
0