結果

問題 No.2566 美しい整数列
ユーザー flippergoflippergo
提出日時 2024-11-12 19:23:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 455 ms / 2,000 ms
コード長 448 bytes
コンパイル時間 526 ms
コンパイル使用メモリ 82,588 KB
実行使用メモリ 175,528 KB
最終ジャッジ日時 2024-11-12 19:24:10
合計ジャッジ時間 10,606 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,028 KB
testcase_01 AC 35 ms
52,860 KB
testcase_02 AC 36 ms
52,444 KB
testcase_03 AC 36 ms
52,132 KB
testcase_04 AC 455 ms
173,076 KB
testcase_05 AC 388 ms
175,528 KB
testcase_06 AC 173 ms
125,892 KB
testcase_07 AC 177 ms
141,732 KB
testcase_08 AC 197 ms
124,848 KB
testcase_09 AC 181 ms
142,612 KB
testcase_10 AC 179 ms
142,732 KB
testcase_11 AC 232 ms
151,260 KB
testcase_12 AC 238 ms
152,136 KB
testcase_13 AC 266 ms
151,068 KB
testcase_14 AC 237 ms
151,588 KB
testcase_15 AC 240 ms
152,084 KB
testcase_16 AC 360 ms
167,132 KB
testcase_17 AC 397 ms
169,264 KB
testcase_18 AC 371 ms
171,760 KB
testcase_19 AC 262 ms
136,684 KB
testcase_20 AC 354 ms
160,796 KB
testcase_21 AC 390 ms
165,768 KB
testcase_22 AC 243 ms
127,016 KB
testcase_23 AC 324 ms
153,936 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()))
A1 = [0]*N
for i in range(1,N):
    A1[i] = A1[i-1]+B[(i-1)%M]
D = [0]*N
for i in range(N):
    D[i] = A[i]-A1[i]
E = {}
for i in range(N):
    if D[i] not in E:
        E[D[i]] = []
    E[D[i]].append(i)
F = {d:0 for d in E}
for d in F:
    F[d] = sum(C[i] for i in E[d])
ans = sum(C)-max(F.values())
print(ans)
0