結果

問題 No.1104 オンライン点呼
ユーザー tamatotamato
提出日時 2020-07-03 22:07:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 447 bytes
コンパイル時間 417 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 102,272 KB
最終ジャッジ日時 2024-09-17 02:17:29
合計ジャッジ時間 3,553 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 91 ms
95,872 KB
testcase_02 AC 88 ms
97,664 KB
testcase_03 AC 92 ms
102,272 KB
testcase_04 AC 38 ms
52,480 KB
testcase_05 AC 39 ms
52,352 KB
testcase_06 AC 38 ms
51,712 KB
testcase_07 AC 69 ms
85,632 KB
testcase_08 WA -
testcase_09 AC 77 ms
96,512 KB
testcase_10 AC 39 ms
52,480 KB
testcase_11 AC 70 ms
77,696 KB
testcase_12 AC 83 ms
84,992 KB
testcase_13 AC 61 ms
76,416 KB
testcase_14 AC 48 ms
61,312 KB
testcase_15 AC 71 ms
88,192 KB
testcase_16 AC 81 ms
97,408 KB
testcase_17 AC 65 ms
81,792 KB
testcase_18 AC 70 ms
87,296 KB
testcase_19 AC 84 ms
96,512 KB
testcase_20 AC 88 ms
97,152 KB
testcase_21 AC 88 ms
97,152 KB
testcase_22 AC 78 ms
94,976 KB
testcase_23 AC 69 ms
86,144 KB
testcase_24 AC 57 ms
71,296 KB
testcase_25 AC 40 ms
52,480 KB
testcase_26 AC 39 ms
52,096 KB
testcase_27 AC 39 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    N, K = map(int, input().split())
    A = list(map(int, input().split()))
    B = list(map(int, input().split()))

    T = [0] * N
    for i in range(1, N):
        if i == 1:
            T[1] = A[0] + B[1]
        else:
            T[i] = min(T[i-1] + A[i-1] + B[i], T[i-2] + A[i-2] + B[i] + K)
    print(T[-1])


if __name__ == '__main__':
    main()
0