結果

問題 No.2566 美しい整数列
ユーザー あ
提出日時 2023-12-14 01:01:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 205 ms / 2,000 ms
コード長 370 bytes
コンパイル時間 452 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 160,664 KB
最終ジャッジ日時 2024-09-27 05:37:06
合計ジャッジ時間 6,083 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
55,112 KB
testcase_01 AC 37 ms
53,744 KB
testcase_02 AC 39 ms
54,604 KB
testcase_03 AC 39 ms
53,848 KB
testcase_04 AC 204 ms
157,088 KB
testcase_05 AC 205 ms
160,664 KB
testcase_06 AC 169 ms
141,784 KB
testcase_07 AC 157 ms
138,108 KB
testcase_08 AC 160 ms
139,776 KB
testcase_09 AC 158 ms
138,348 KB
testcase_10 AC 166 ms
138,348 KB
testcase_11 AC 175 ms
137,772 KB
testcase_12 AC 177 ms
138,464 KB
testcase_13 AC 176 ms
137,868 KB
testcase_14 AC 170 ms
138,136 KB
testcase_15 AC 176 ms
138,264 KB
testcase_16 AC 203 ms
147,804 KB
testcase_17 AC 204 ms
148,340 KB
testcase_18 AC 197 ms
150,116 KB
testcase_19 AC 153 ms
133,108 KB
testcase_20 AC 182 ms
148,280 KB
testcase_21 AC 187 ms
148,828 KB
testcase_22 AC 135 ms
123,920 KB
testcase_23 AC 165 ms
137,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

n, m = map(int, input().split())
a = list(map(int, input().split()))
b = list(map(int, input().split()))
c = list(map(int, input().split()))

d = defaultdict(int)
diff = 0
for i in range(n):
    if i == 0:
        d[a[i]] += c[i]
        continue
    diff += b[(i - 1) % m]
    d[a[i] - diff] += c[i]

print(sum(c) - max(d.values()))
0