結果

問題 No.2566 美しい整数列
ユーザー kemunikukemuniku
提出日時 2023-12-02 17:10:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 222 ms / 2,000 ms
コード長 294 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 160,460 KB
最終ジャッジ日時 2024-09-26 21:06:02
合計ジャッジ時間 5,825 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,504 KB
testcase_01 AC 46 ms
53,376 KB
testcase_02 AC 42 ms
53,376 KB
testcase_03 AC 42 ms
53,376 KB
testcase_04 AC 218 ms
157,048 KB
testcase_05 AC 210 ms
160,460 KB
testcase_06 AC 173 ms
141,772 KB
testcase_07 AC 222 ms
137,876 KB
testcase_08 AC 187 ms
139,524 KB
testcase_09 AC 182 ms
138,108 KB
testcase_10 AC 176 ms
138,360 KB
testcase_11 AC 191 ms
138,012 KB
testcase_12 AC 187 ms
138,528 KB
testcase_13 AC 179 ms
137,768 KB
testcase_14 AC 185 ms
138,204 KB
testcase_15 AC 186 ms
138,136 KB
testcase_16 AC 198 ms
147,976 KB
testcase_17 AC 196 ms
148,480 KB
testcase_18 AC 196 ms
150,148 KB
testcase_19 AC 155 ms
133,304 KB
testcase_20 AC 217 ms
148,156 KB
testcase_21 AC 200 ms
149,016 KB
testcase_22 AC 151 ms
123,740 KB
testcase_23 AC 181 ms
137,340 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()))
now = 0
d = defaultdict(int)
for i in range(N):
    d[now-A[i]] += C[i]
    now += B[i%M]
print(sum(C)-max(d.values()))
0