結果

問題 No.2603 Tone Correction
ユーザー KudeKude
提出日時 2024-01-12 22:42:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 187 ms / 2,000 ms
コード長 328 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 147,704 KB
最終ジャッジ日時 2024-09-27 23:25:50
合計ジャッジ時間 6,642 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 37 ms
52,120 KB
testcase_02 AC 37 ms
51,456 KB
testcase_03 AC 57 ms
61,184 KB
testcase_04 AC 44 ms
61,184 KB
testcase_05 AC 45 ms
61,440 KB
testcase_06 AC 45 ms
61,184 KB
testcase_07 AC 46 ms
61,056 KB
testcase_08 AC 45 ms
61,568 KB
testcase_09 AC 45 ms
61,568 KB
testcase_10 AC 46 ms
61,568 KB
testcase_11 AC 45 ms
61,184 KB
testcase_12 AC 45 ms
61,696 KB
testcase_13 AC 183 ms
147,056 KB
testcase_14 AC 184 ms
147,184 KB
testcase_15 AC 184 ms
147,448 KB
testcase_16 AC 184 ms
146,924 KB
testcase_17 AC 186 ms
147,308 KB
testcase_18 AC 184 ms
147,520 KB
testcase_19 AC 185 ms
147,436 KB
testcase_20 AC 184 ms
147,316 KB
testcase_21 AC 187 ms
147,312 KB
testcase_22 AC 186 ms
147,704 KB
testcase_23 AC 165 ms
125,748 KB
testcase_24 AC 167 ms
125,880 KB
testcase_25 AC 165 ms
126,332 KB
testcase_26 AC 171 ms
125,992 KB
testcase_27 AC 164 ms
126,472 KB
testcase_28 AC 164 ms
126,264 KB
testcase_29 AC 166 ms
125,872 KB
testcase_30 AC 165 ms
125,612 KB
testcase_31 AC 167 ms
125,800 KB
testcase_32 AC 167 ms
125,876 KB
testcase_33 AC 37 ms
51,712 KB
testcase_34 AC 149 ms
144,912 KB
testcase_35 AC 149 ms
145,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
a = list(map(int, input().split()))
b = list(map(int, input().split()))
a.append(0)
b.append(0)
sm = 0
costs = []
pre = 0
for x, y in zip(a, b):
    z = (y - x) % m
    v = (z - pre) % m
    sm += v
    costs.append(m - v)
    pre = z
cnt = sm // m
costs.sort()
ans = sum(costs[:cnt])
print(ans)
0