結果

問題 No.1104 オンライン点呼
ユーザー ks2mks2m
提出日時 2020-07-03 22:04:01
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 936 bytes
コンパイル時間 2,425 ms
コンパイル使用メモリ 78,048 KB
実行使用メモリ 64,048 KB
最終ジャッジ日時 2024-09-17 01:57:31
合計ジャッジ時間 9,016 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
36,968 KB
testcase_01 AC 312 ms
54,136 KB
testcase_02 AC 311 ms
54,196 KB
testcase_03 AC 304 ms
54,652 KB
testcase_04 AC 56 ms
36,524 KB
testcase_05 AC 54 ms
36,848 KB
testcase_06 AC 52 ms
36,968 KB
testcase_07 AC 235 ms
49,240 KB
testcase_08 AC 143 ms
44,852 KB
testcase_09 AC 215 ms
51,036 KB
testcase_10 AC 53 ms
36,780 KB
testcase_11 AC 182 ms
45,276 KB
testcase_12 AC 216 ms
48,884 KB
testcase_13 AC 200 ms
45,992 KB
testcase_14 AC 103 ms
38,856 KB
testcase_15 AC 263 ms
49,692 KB
testcase_16 WA -
testcase_17 AC 211 ms
48,960 KB
testcase_18 AC 258 ms
50,836 KB
testcase_19 AC 299 ms
53,856 KB
testcase_20 AC 310 ms
53,796 KB
testcase_21 AC 307 ms
54,664 KB
testcase_22 AC 286 ms
53,768 KB
testcase_23 AC 240 ms
52,184 KB
testcase_24 AC 177 ms
44,528 KB
testcase_25 AC 56 ms
37,004 KB
testcase_26 AC 52 ms
36,548 KB
testcase_27 AC 52 ms
36,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int n = Integer.parseInt(sa[0]);
		int k = Integer.parseInt(sa[1]);

		sa = br.readLine().split(" ");
		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = Integer.parseInt(sa[i]);
		}

		sa = br.readLine().split(" ");
		int[] b = new int[n];
		for (int i = 0; i < n; i++) {
			b[i] = Integer.parseInt(sa[i]);
		}
		br.close();

		long[] dp = new long[n];
		for (int i = 1; i < n; i++) {
			dp[i] = dp[i - 1] + a[i - 1] + b[i];
			if (i > 1) {
				long val = dp[i - 2] + a[i - 2] + b[i] + k;
				dp[i] = Math.min(dp[i], val);
			}
		}

		long ans = 0;
		for (int i = 0; i < dp.length; i++) {
			ans = Math.max(ans, dp[i]);
		}
		System.out.println(ans);
	}
}
0