結果

問題 No.2566 美しい整数列
ユーザー mymelochanmymelochan
提出日時 2023-12-02 15:57:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 226 ms / 2,000 ms
コード長 739 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 157,796 KB
最終ジャッジ日時 2024-09-26 19:34:39
合計ジャッジ時間 6,051 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
54,400 KB
testcase_01 AC 45 ms
54,016 KB
testcase_02 AC 46 ms
54,400 KB
testcase_03 AC 45 ms
54,144 KB
testcase_04 AC 216 ms
156,996 KB
testcase_05 AC 226 ms
157,796 KB
testcase_06 AC 172 ms
138,760 KB
testcase_07 AC 170 ms
135,140 KB
testcase_08 AC 169 ms
136,600 KB
testcase_09 AC 168 ms
135,200 KB
testcase_10 AC 169 ms
135,592 KB
testcase_11 AC 180 ms
134,200 KB
testcase_12 AC 184 ms
134,220 KB
testcase_13 AC 179 ms
134,456 KB
testcase_14 AC 179 ms
135,024 KB
testcase_15 AC 181 ms
134,752 KB
testcase_16 AC 200 ms
149,900 KB
testcase_17 AC 204 ms
151,572 KB
testcase_18 AC 207 ms
151,904 KB
testcase_19 AC 162 ms
130,884 KB
testcase_20 AC 201 ms
147,360 KB
testcase_21 AC 208 ms
148,396 KB
testcase_22 AC 148 ms
122,880 KB
testcase_23 AC 177 ms
134,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#############################################################

import sys
sys.setrecursionlimit(10**7)

from heapq import heappop,heappush
from collections import deque,defaultdict,Counter
from bisect import bisect_left, bisect_right
from itertools import product,combinations,permutations
from math import sin,cos
#from math import isqrt #DO NOT USE PyPy

ipt = sys.stdin.readline
iin = lambda :int(ipt())
lmin = lambda :list(map(int,ipt().split()))

#############################################################

N,M = lmin()
A = lmin()
B = lmin()
C = lmin()

D = defaultdict(int)
tmp = 0
sm = 0
SC = sum(C)
for i in range(N):
    D[A[i]-sm] += C[i]
    sm += B[i%M]

ans = 1<<60
for k,v in D.items():
    ans = min(ans,SC-v)
print(ans)
0