結果

問題 No.2566 美しい整数列
ユーザー 21kazu1321kazu13
提出日時 2023-12-04 15:19:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 268 ms / 2,000 ms
コード長 1,276 bytes
コンパイル時間 543 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 160,172 KB
最終ジャッジ日時 2023-12-04 15:19:56
合計ジャッジ時間 7,336 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
65,924 KB
testcase_01 AC 61 ms
65,924 KB
testcase_02 AC 63 ms
65,924 KB
testcase_03 AC 63 ms
65,924 KB
testcase_04 AC 266 ms
160,000 KB
testcase_05 AC 268 ms
159,912 KB
testcase_06 AC 202 ms
160,172 KB
testcase_07 AC 198 ms
159,856 KB
testcase_08 AC 197 ms
159,968 KB
testcase_09 AC 200 ms
159,920 KB
testcase_10 AC 201 ms
159,928 KB
testcase_11 AC 214 ms
159,928 KB
testcase_12 AC 213 ms
159,244 KB
testcase_13 AC 211 ms
159,936 KB
testcase_14 AC 210 ms
159,852 KB
testcase_15 AC 214 ms
159,152 KB
testcase_16 AC 228 ms
154,936 KB
testcase_17 AC 235 ms
156,736 KB
testcase_18 AC 227 ms
157,588 KB
testcase_19 AC 191 ms
144,140 KB
testcase_20 AC 217 ms
153,292 KB
testcase_21 AC 222 ms
154,656 KB
testcase_22 AC 174 ms
132,588 KB
testcase_23 AC 198 ms
147,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys
from bisect import bisect_left, bisect_right, insort_left, insort_right  # type: ignore
from collections import Counter, defaultdict, deque  # type: ignore
from math import gcd, sqrt, ceil, factorial  # type: ignore
from heapq import heapify, heappop, heappush, heappushpop, heapreplace, merge  # type: ignore
from itertools import accumulate, combinations, permutations, product  # type: ignore
from string import ascii_lowercase, ascii_uppercase # type: ignore

def LI(): return list(map(int, sys.stdin.buffer.readline().split()))
def I(): return int(sys.stdin.buffer.readline())
def LS(): return sys.stdin.buffer.readline().rstrip().decode("utf-8").split()
def S(): return sys.stdin.buffer.readline().rstrip().decode("utf-8")
def IR(n): return [I() for _ in range(n)]
def LIR(n): return [LI() for _ in range(n)]
def SR(n): return [S() for _ in range(n)]
def LSR(n): return [LS() for _ in range(n)]
def SRL(n): return [list(S()) for _ in range(n)]

N,M = LI()
A = LI()
tmp = LI()*((N+M-1)//M)
B = tmp[:N-1]
acc = list(accumulate(B,initial=0))
C = LI()
sumc = sum(C)
d = defaultdict(int)
for i in range(N):
    a0 = A[i]-acc[i]
    d[a0] += C[i]
ans = 10**18
for k,v in d.items():
    ans = min(
        ans,
        sumc-v
    )
print(ans)
0