結果

問題 No.2566 美しい整数列
ユーザー nikoro256nikoro256
提出日時 2023-12-09 12:49:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 250 ms / 2,000 ms
コード長 372 bytes
コンパイル時間 463 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 160,716 KB
最終ジャッジ日時 2024-09-27 03:34:36
合計ジャッジ時間 6,488 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,120 KB
testcase_01 AC 44 ms
53,376 KB
testcase_02 AC 44 ms
53,504 KB
testcase_03 AC 45 ms
53,376 KB
testcase_04 AC 250 ms
157,268 KB
testcase_05 AC 245 ms
160,716 KB
testcase_06 AC 184 ms
141,964 KB
testcase_07 AC 180 ms
137,744 KB
testcase_08 AC 182 ms
139,792 KB
testcase_09 AC 182 ms
138,228 KB
testcase_10 AC 181 ms
138,232 KB
testcase_11 AC 195 ms
137,940 KB
testcase_12 AC 197 ms
138,536 KB
testcase_13 AC 195 ms
138,188 KB
testcase_14 AC 193 ms
138,008 KB
testcase_15 AC 196 ms
137,712 KB
testcase_16 AC 217 ms
147,356 KB
testcase_17 AC 221 ms
149,652 KB
testcase_18 AC 220 ms
149,996 KB
testcase_19 AC 178 ms
135,220 KB
testcase_20 AC 210 ms
148,064 KB
testcase_21 AC 219 ms
149,060 KB
testcase_22 AC 165 ms
124,196 KB
testcase_23 AC 193 ms
137,128 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()))
left=0
for i in range(N):
    A[i]-=left
    left+=B[i%M]
dic=defaultdict(int)
all=0
for i in range(N):
    dic[A[i]]+=C[i]
    all+=C[i]
ans=10**20
for k in dic.keys():
    ans=min(all-dic[k],ans)
print(ans)
0