結果

問題 No.2566 美しい整数列
ユーザー tipstar0125tipstar0125
提出日時 2024-01-08 20:55:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 241 ms / 2,000 ms
コード長 369 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 176,700 KB
最終ジャッジ日時 2024-09-27 19:41:28
合計ジャッジ時間 7,510 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,560 KB
testcase_01 AC 42 ms
55,084 KB
testcase_02 AC 44 ms
54,168 KB
testcase_03 AC 43 ms
54,712 KB
testcase_04 AC 233 ms
171,164 KB
testcase_05 AC 241 ms
176,700 KB
testcase_06 AC 185 ms
141,936 KB
testcase_07 AC 179 ms
137,872 KB
testcase_08 AC 179 ms
139,784 KB
testcase_09 AC 179 ms
138,620 KB
testcase_10 AC 179 ms
138,736 KB
testcase_11 AC 193 ms
139,804 KB
testcase_12 AC 193 ms
139,632 KB
testcase_13 AC 192 ms
139,840 KB
testcase_14 AC 192 ms
139,440 KB
testcase_15 AC 195 ms
139,648 KB
testcase_16 AC 218 ms
160,708 KB
testcase_17 AC 227 ms
162,956 KB
testcase_18 AC 223 ms
163,276 KB
testcase_19 AC 178 ms
134,524 KB
testcase_20 AC 227 ms
159,704 KB
testcase_21 AC 229 ms
161,868 KB
testcase_22 AC 167 ms
132,352 KB
testcase_23 AC 194 ms
137,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
N,M=list(map(int,input().split()))
A=list(map(int,input().split()))
B=list(map(int,input().split()))
C=list(map(int,input().split()))

BS=[0]
for i in range(N):
    BS.append(BS[-1]+B[i%M])

mp=defaultdict(int)
for (i,a) in enumerate(A):
    mp[a-BS[i]]+=C[i]

s=sum(C)
ans=s
for (_,v) in mp.items():
    ans=min(ans,s-v)
print(ans)
0