結果

問題 No.2566 美しい整数列
ユーザー ゼットゼット
提出日時 2023-12-21 00:33:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 249 ms / 2,000 ms
コード長 325 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 158,024 KB
最終ジャッジ日時 2024-09-27 10:19:57
合計ジャッジ時間 6,432 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,732 KB
testcase_01 AC 39 ms
52,624 KB
testcase_02 AC 39 ms
53,308 KB
testcase_03 AC 39 ms
52,152 KB
testcase_04 AC 249 ms
156,972 KB
testcase_05 AC 223 ms
158,024 KB
testcase_06 AC 171 ms
126,188 KB
testcase_07 AC 176 ms
142,708 KB
testcase_08 AC 170 ms
122,592 KB
testcase_09 AC 184 ms
142,744 KB
testcase_10 AC 184 ms
142,620 KB
testcase_11 AC 195 ms
142,360 KB
testcase_12 AC 188 ms
142,736 KB
testcase_13 AC 186 ms
142,356 KB
testcase_14 AC 186 ms
142,408 KB
testcase_15 AC 191 ms
142,576 KB
testcase_16 AC 211 ms
149,116 KB
testcase_17 AC 210 ms
150,480 KB
testcase_18 AC 215 ms
151,340 KB
testcase_19 AC 162 ms
132,812 KB
testcase_20 AC 206 ms
139,816 KB
testcase_21 AC 210 ms
149,132 KB
testcase_22 AC 149 ms
124,504 KB
testcase_23 AC 169 ms
119,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
A=list(map(int,input().split()))
B=list(map(int,input().split()))
C=list(map(int,input().split()))
v=[0]*N
for i in range(1,N):
  v[i]=v[i-1]+B[(i-1)%M]
T={}
for i in range(N):
  w=A[i]-v[i]
  if not w in T:
    T[w]=C[i]
  else:
    T[w]+=C[i]
k=0
for n in T:
  k=max(k,T[n])
u=sum(C)
print(u-k)
0