結果

問題 No.2566 美しい整数列
ユーザー Basin-BugBasin-Bug
提出日時 2023-12-02 16:37:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 441 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 142,620 KB
最終ジャッジ日時 2024-09-26 20:31:36
合計ジャッジ時間 6,011 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
51,968 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 40 ms
51,712 KB
testcase_04 AC 214 ms
134,536 KB
testcase_05 AC 219 ms
135,308 KB
testcase_06 WA -
testcase_07 AC 223 ms
142,620 KB
testcase_08 AC 197 ms
122,348 KB
testcase_09 AC 206 ms
142,620 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 197 ms
142,300 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 193 ms
141,596 KB
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()))

ans1 = 0
p = A[0]
for i in range(N - 1):
  if A[i + 1] - p != B[i % M]:
    ans1 += C[i + 1]
    p = p + B[i % M]
  else:
    p = A[i + 1]

ans2 = 0
p = A[-1]
for i in range(N - 2, -1, -1):
  if p - A[i] != B[i % M]:
    ans2 += C[i]
    p = p - B[i % M]
  else:
    p = A[i]

print(min(ans1, ans2))
0