結果

問題 No.2566 美しい整数列
ユーザー ntudantuda
提出日時 2023-12-04 19:59:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 272 ms / 2,000 ms
コード長 306 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 160,268 KB
最終ジャッジ日時 2024-09-26 23:10:53
合計ジャッジ時間 6,865 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
53,248 KB
testcase_01 AC 51 ms
52,992 KB
testcase_02 AC 53 ms
53,248 KB
testcase_03 AC 52 ms
53,504 KB
testcase_04 AC 268 ms
156,660 KB
testcase_05 AC 272 ms
160,268 KB
testcase_06 AC 219 ms
142,084 KB
testcase_07 AC 217 ms
137,620 KB
testcase_08 AC 214 ms
139,400 KB
testcase_09 AC 216 ms
137,984 KB
testcase_10 AC 218 ms
137,980 KB
testcase_11 AC 230 ms
137,896 KB
testcase_12 AC 235 ms
138,136 KB
testcase_13 AC 233 ms
138,040 KB
testcase_14 AC 228 ms
137,768 KB
testcase_15 AC 236 ms
137,628 KB
testcase_16 AC 249 ms
147,588 KB
testcase_17 AC 252 ms
148,224 KB
testcase_18 AC 258 ms
149,896 KB
testcase_19 AC 204 ms
132,924 KB
testcase_20 AC 250 ms
148,028 KB
testcase_21 AC 230 ms
148,616 KB
testcase_22 AC 180 ms
123,864 KB
testcase_23 AC 193 ms
137,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
dic = defaultdict(int)
N,M = map(int,input().split())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
C = list(map(int,input().split()))
tmp = 0
for i,a in enumerate(A):
    dic[a - tmp] += C[i]
    tmp += B[i % M]
print(sum(C) - max(dic.values()))
0