結果

問題 No.2566 美しい整数列
ユーザー loop0919loop0919
提出日時 2023-09-21 00:58:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 791 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 160,484 KB
最終ジャッジ日時 2024-07-06 19:41:38
合計ジャッジ時間 5,402 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
55,396 KB
testcase_01 AC 38 ms
54,368 KB
testcase_02 WA -
testcase_03 AC 36 ms
54,780 KB
testcase_04 AC 192 ms
157,232 KB
testcase_05 AC 196 ms
160,484 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 180 ms
147,440 KB
testcase_17 AC 190 ms
149,500 KB
testcase_18 AC 193 ms
149,892 KB
testcase_19 AC 152 ms
135,640 KB
testcase_20 AC 182 ms
148,308 KB
testcase_21 AC 183 ms
148,936 KB
testcase_22 AC 134 ms
124,416 KB
testcase_23 AC 160 ms
137,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import系 ---
from collections import defaultdict

# 入力用 ---
INT = lambda: int(input())
MI = lambda: map(int, input().split())
MI_DEC = lambda: map(lambda x: int(x) - 1, input().split())
LI = lambda: list(map(int, input().split()))
LI_DEC = lambda: list(map(lambda x: int(x) - 1, input().split()))
LS = lambda: list(input())
LSS = lambda: input().split()

INF = 1 << 60
MOD = 998244353

# コード ---
N, M = MI()
A_list = LI()
B_list = LI()
C_list = LI()

sum_cost = sum(C_list)

cnt = 0
diff_dict = defaultdict(int)

for i, (a, c) in enumerate(zip(A_list, C_list)):
    cnt += B_list[(i + 1) % M]
    diff_dict[cnt - a] += c

max_exempted_cost = 0

for exempted in diff_dict.values():
    max_exempted_cost = max(exempted, max_exempted_cost)

print(sum_cost - max_exempted_cost)

0