結果

問題 No.2603 Tone Correction
ユーザー ニックネームニックネーム
提出日時 2024-01-13 02:18:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 204 ms / 2,000 ms
コード長 230 bytes
コンパイル時間 409 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 157,888 KB
最終ジャッジ日時 2024-09-28 01:09:32
合計ジャッジ時間 7,191 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,092 KB
testcase_01 AC 40 ms
52,240 KB
testcase_02 AC 39 ms
53,736 KB
testcase_03 AC 47 ms
62,588 KB
testcase_04 AC 48 ms
63,204 KB
testcase_05 AC 47 ms
61,420 KB
testcase_06 AC 47 ms
62,772 KB
testcase_07 AC 47 ms
61,704 KB
testcase_08 AC 47 ms
61,448 KB
testcase_09 AC 47 ms
62,292 KB
testcase_10 AC 46 ms
62,080 KB
testcase_11 AC 47 ms
62,172 KB
testcase_12 AC 48 ms
62,960 KB
testcase_13 AC 203 ms
157,888 KB
testcase_14 AC 202 ms
157,624 KB
testcase_15 AC 203 ms
157,372 KB
testcase_16 AC 204 ms
157,612 KB
testcase_17 AC 200 ms
157,368 KB
testcase_18 AC 201 ms
157,120 KB
testcase_19 AC 204 ms
157,092 KB
testcase_20 AC 203 ms
157,372 KB
testcase_21 AC 201 ms
157,760 KB
testcase_22 AC 201 ms
157,496 KB
testcase_23 AC 181 ms
131,176 KB
testcase_24 AC 186 ms
131,072 KB
testcase_25 AC 179 ms
131,564 KB
testcase_26 AC 177 ms
131,264 KB
testcase_27 AC 182 ms
131,332 KB
testcase_28 AC 184 ms
131,832 KB
testcase_29 AC 181 ms
131,060 KB
testcase_30 AC 187 ms
131,312 KB
testcase_31 AC 180 ms
131,688 KB
testcase_32 AC 184 ms
131,852 KB
testcase_33 AC 40 ms
51,940 KB
testcase_34 AC 176 ms
155,580 KB
testcase_35 AC 166 ms
155,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
a = [0]+list(map(int,input().split()))+[0]
b = [0]+list(map(int,input().split()))+[0]
d = sorted((b[i+1]-a[i+1]-b[i]+a[i])%m for i in range(n+1))
c = sum(d)//m
print((sum(d[:-c])+c*m-sum(d[-c:]))//2)
0