結果

問題 No.1104 オンライン点呼
ユーザー Kiri8128Kiri8128
提出日時 2020-07-03 21:53:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 247 bytes
コンパイル時間 447 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 96,536 KB
最終ジャッジ日時 2024-09-17 00:25:10
合計ジャッジ時間 3,077 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 86 ms
94,976 KB
testcase_02 AC 87 ms
96,536 KB
testcase_03 AC 76 ms
90,436 KB
testcase_04 AC 39 ms
51,900 KB
testcase_05 AC 38 ms
51,712 KB
testcase_06 AC 38 ms
51,584 KB
testcase_07 AC 65 ms
78,464 KB
testcase_08 WA -
testcase_09 AC 69 ms
84,712 KB
testcase_10 AC 39 ms
52,224 KB
testcase_11 AC 60 ms
72,704 KB
testcase_12 AC 64 ms
78,592 KB
testcase_13 AC 59 ms
73,088 KB
testcase_14 AC 45 ms
60,800 KB
testcase_15 AC 68 ms
82,304 KB
testcase_16 AC 74 ms
87,680 KB
testcase_17 AC 64 ms
76,928 KB
testcase_18 AC 68 ms
80,896 KB
testcase_19 AC 86 ms
90,240 KB
testcase_20 AC 82 ms
92,520 KB
testcase_21 AC 81 ms
92,640 KB
testcase_22 AC 73 ms
87,396 KB
testcase_23 AC 68 ms
80,640 KB
testcase_24 AC 56 ms
68,608 KB
testcase_25 AC 39 ms
52,096 KB
testcase_26 AC 38 ms
52,096 KB
testcase_27 AC 37 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = [int(a) for a in input().split()]
B = [int(a) for a in input().split()]
X = [0] * N
if N > 1: X[1] = A[0] + B[1]
for i in range(2, N): X[i] = min(X[i-2] + K + A[i-2] + B[i], X[i-1] + A[i-1] + B[i])
print(X[-1])
0