結果

問題 No.2566 美しい整数列
ユーザー けんぴんけんぴん
提出日時 2023-09-23 03:03:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 250 ms / 2,000 ms
コード長 806 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 82,588 KB
実行使用メモリ 184,032 KB
最終ジャッジ日時 2024-07-16 03:24:03
合計ジャッジ時間 7,481 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,788 KB
testcase_01 AC 44 ms
55,072 KB
testcase_02 AC 44 ms
54,808 KB
testcase_03 AC 44 ms
54,168 KB
testcase_04 AC 250 ms
184,032 KB
testcase_05 AC 235 ms
165,104 KB
testcase_06 AC 192 ms
145,188 KB
testcase_07 AC 189 ms
146,624 KB
testcase_08 AC 190 ms
145,948 KB
testcase_09 AC 191 ms
146,228 KB
testcase_10 AC 191 ms
146,292 KB
testcase_11 AC 204 ms
153,128 KB
testcase_12 AC 207 ms
153,420 KB
testcase_13 AC 206 ms
152,908 KB
testcase_14 AC 208 ms
153,032 KB
testcase_15 AC 213 ms
153,152 KB
testcase_16 AC 228 ms
173,800 KB
testcase_17 AC 236 ms
176,028 KB
testcase_18 AC 236 ms
177,032 KB
testcase_19 AC 171 ms
131,692 KB
testcase_20 AC 224 ms
172,624 KB
testcase_21 AC 230 ms
175,240 KB
testcase_22 AC 170 ms
140,356 KB
testcase_23 AC 192 ms
140,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

def main():
    N,M = map(int,input().split())
    A = list(map(int,input().split()))
    B = list(map(int,input().split()))
    C = list(map(int,input().split()))
    assert 1 <= M < N <= 2*10**5
    for a in A:
        assert -10**9 <= a <= 10**9
    for b in B:
        assert -10**9 <= b <= 10**9
    for c in C:
        assert 1 <= c <= 10**9
    A_hope = [A[0]]
    for i in range(N-1):
        A_hope.append(A_hope[-1]+B[i%M])
    # print(A_hope)
    diff_hope = []
    for i in range(N):
        diff_hope.append(A[i]-A_hope[i])
    # print(diff_hope)
    C_per_diff = defaultdict(int)
    for i in range(N):
        C_per_diff[diff_hope[i]] += C[i]
    # print(C_per_diff)
    print(sum(C) - max(C_per_diff.values()))
    
if __name__ == "__main__":
    main()
0