結果

問題 No.2566 美しい整数列
ユーザー KudeKude
提出日時 2023-12-12 23:16:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 264 ms / 2,000 ms
コード長 329 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 166,348 KB
最終ジャッジ日時 2024-09-27 05:04:53
合計ジャッジ時間 6,473 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,584 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 254 ms
145,556 KB
testcase_05 AC 256 ms
141,664 KB
testcase_06 AC 173 ms
126,236 KB
testcase_07 AC 178 ms
142,456 KB
testcase_08 AC 171 ms
122,496 KB
testcase_09 AC 180 ms
142,744 KB
testcase_10 AC 180 ms
142,872 KB
testcase_11 AC 213 ms
142,256 KB
testcase_12 AC 211 ms
142,844 KB
testcase_13 AC 210 ms
142,252 KB
testcase_14 AC 208 ms
142,664 KB
testcase_15 AC 210 ms
142,392 KB
testcase_16 AC 264 ms
166,348 KB
testcase_17 AC 264 ms
162,768 KB
testcase_18 AC 259 ms
160,596 KB
testcase_19 AC 192 ms
126,176 KB
testcase_20 AC 254 ms
157,728 KB
testcase_21 AC 254 ms
157,448 KB
testcase_22 AC 187 ms
126,888 KB
testcase_23 AC 210 ms
125,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
a = list(map(int, input().split()))
b = list(map(int, input().split()))
c = list(map(int, input().split()))
now = 0
d = {}
for i, x in enumerate(a):
    d.setdefault(x - now, []).append(i)
    now += b[i % m]
gain = max(sum(c[i] for i in idx) for idx in d.values())
ans = sum(c) - gain
print(ans)
0