結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,456 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 38 ms
51,584 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 37 ms
51,968 KB
testcase_05 AC 39 ms
52,352 KB
testcase_06 AC 86 ms
76,672 KB
testcase_07 AC 116 ms
78,720 KB
testcase_08 AC 41 ms
52,736 KB
testcase_09 AC 39 ms
52,736 KB
testcase_10 AC 222 ms
88,064 KB
testcase_11 AC 239 ms
86,528 KB
testcase_12 AC 152 ms
86,016 KB
testcase_13 AC 123 ms
79,104 KB
testcase_14 AC 124 ms
78,720 KB
testcase_15 AC 215 ms
84,992 KB
testcase_16 AC 92 ms
76,928 KB
testcase_17 AC 172 ms
83,328 KB
testcase_18 AC 231 ms
87,040 KB
testcase_19 AC 238 ms
87,296 KB
testcase_20 AC 160 ms
81,152 KB
testcase_21 AC 147 ms
81,024 KB
testcase_22 AC 239 ms
91,264 KB
testcase_23 AC 125 ms
78,848 KB
testcase_24 AC 212 ms
84,992 KB
testcase_25 AC 96 ms
76,800 KB
testcase_26 AC 123 ms
78,720 KB
testcase_27 AC 202 ms
85,120 KB
testcase_28 AC 150 ms
80,768 KB
testcase_29 AC 237 ms
88,192 KB
testcase_30 AC 99 ms
76,800 KB
testcase_31 AC 86 ms
77,056 KB
testcase_32 AC 104 ms
76,928 KB
testcase_33 AC 213 ms
87,552 KB
testcase_34 AC 89 ms
76,672 KB
testcase_35 AC 123 ms
78,720 KB
testcase_36 AC 127 ms
78,848 KB
testcase_37 AC 229 ms
85,760 KB
testcase_38 AC 180 ms
82,688 KB
testcase_39 AC 87 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