結果

問題 No.2566 美しい整数列
ユーザー titiatitia
提出日時 2023-12-16 03:27:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 791 ms / 2,000 ms
コード長 434 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 101,052 KB
最終ジャッジ日時 2024-09-27 07:22:00
合計ジャッジ時間 14,413 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 788 ms
100,152 KB
testcase_05 AC 791 ms
101,052 KB
testcase_06 AC 434 ms
60,248 KB
testcase_07 AC 433 ms
60,880 KB
testcase_08 AC 442 ms
62,924 KB
testcase_09 AC 448 ms
61,256 KB
testcase_10 AC 446 ms
61,460 KB
testcase_11 AC 548 ms
68,900 KB
testcase_12 AC 552 ms
68,472 KB
testcase_13 AC 541 ms
68,868 KB
testcase_14 AC 548 ms
68,928 KB
testcase_15 AC 558 ms
68,796 KB
testcase_16 AC 774 ms
94,132 KB
testcase_17 AC 745 ms
87,704 KB
testcase_18 AC 739 ms
89,716 KB
testcase_19 AC 492 ms
61,652 KB
testcase_20 AC 681 ms
86,296 KB
testcase_21 AC 706 ms
87,040 KB
testcase_22 AC 441 ms
55,056 KB
testcase_23 AC 610 ms
76,496 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()))

while len(B)<N+1:
    B+=B

S=[0]
for b in B:
    S.append(S[-1]+b)

D=dict()

for i in range(N):
    k=A[i]-S[i]
    if k in D:
        D[k].append(i)
    else:
        D[k]=[i]

SUM=sum(C)

ANS=1<<60

for k in D:
    score=0
    for x in D[k]:
        score+=C[x]

    ANS=min(ANS,SUM-score)

print(ANS)
0