結果

問題 No.2566 美しい整数列
ユーザー kinoko_econkinoko_econ
提出日時 2023-12-02 16:55:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 448 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 142,872 KB
最終ジャッジ日時 2024-09-26 20:53:49
合計ジャッジ時間 5,322 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,968 KB
testcase_01 AC 34 ms
52,096 KB
testcase_02 AC 35 ms
52,352 KB
testcase_03 AC 35 ms
52,224 KB
testcase_04 AC 159 ms
137,744 KB
testcase_05 AC 166 ms
138,996 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 153 ms
123,760 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

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()))
C_cum = [0]
for i in range(N):
    C_cum.append(C_cum[-1]+C[i])

ans = 0
for i in range(N-1):
    if A[i+1] - A[i] == B[i%M]:
        continue
    else:
        if C_cum[i+1] <= C[i+1]:
            ans += C_cum[i+1]
        else:
            ans += C[i+1]
            A[i+1] = A[i] + B[i%M]
print(ans)
        
0