結果

問題 No.1199 お菓子配り-2
ユーザー ks2mks2m
提出日時 2020-08-28 21:44:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 598 ms / 1,000 ms
コード長 953 bytes
コンパイル時間 2,724 ms
コンパイル使用メモリ 77,612 KB
実行使用メモリ 60,212 KB
最終ジャッジ日時 2024-11-14 03:14:54
合計ジャッジ時間 26,282 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
50,308 KB
testcase_01 AC 53 ms
50,368 KB
testcase_02 AC 53 ms
50,396 KB
testcase_03 AC 291 ms
56,716 KB
testcase_04 AC 437 ms
58,512 KB
testcase_05 AC 123 ms
54,200 KB
testcase_06 AC 140 ms
54,356 KB
testcase_07 AC 331 ms
57,412 KB
testcase_08 AC 373 ms
58,040 KB
testcase_09 AC 300 ms
57,544 KB
testcase_10 AC 181 ms
56,048 KB
testcase_11 AC 287 ms
56,948 KB
testcase_12 AC 276 ms
56,640 KB
testcase_13 AC 180 ms
55,036 KB
testcase_14 AC 169 ms
56,132 KB
testcase_15 AC 156 ms
55,168 KB
testcase_16 AC 363 ms
57,984 KB
testcase_17 AC 291 ms
56,632 KB
testcase_18 AC 414 ms
58,112 KB
testcase_19 AC 225 ms
56,496 KB
testcase_20 AC 478 ms
58,600 KB
testcase_21 AC 405 ms
58,068 KB
testcase_22 AC 331 ms
57,576 KB
testcase_23 AC 376 ms
57,792 KB
testcase_24 AC 402 ms
58,080 KB
testcase_25 AC 183 ms
54,804 KB
testcase_26 AC 415 ms
58,244 KB
testcase_27 AC 354 ms
58,056 KB
testcase_28 AC 563 ms
59,088 KB
testcase_29 AC 574 ms
58,704 KB
testcase_30 AC 562 ms
59,100 KB
testcase_31 AC 593 ms
60,212 KB
testcase_32 AC 547 ms
59,132 KB
testcase_33 AC 558 ms
59,072 KB
testcase_34 AC 586 ms
58,944 KB
testcase_35 AC 586 ms
59,044 KB
testcase_36 AC 587 ms
59,388 KB
testcase_37 AC 594 ms
59,712 KB
testcase_38 AC 577 ms
59,704 KB
testcase_39 AC 568 ms
59,240 KB
testcase_40 AC 582 ms
58,860 KB
testcase_41 AC 591 ms
59,208 KB
testcase_42 AC 586 ms
59,516 KB
testcase_43 AC 596 ms
59,104 KB
testcase_44 AC 568 ms
59,004 KB
testcase_45 AC 581 ms
58,856 KB
testcase_46 AC 598 ms
58,988 KB
testcase_47 AC 583 ms
58,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.Arrays;

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 m = Integer.parseInt(sa[1]);
		long[] a = new long[n];
		for (int i = 0; i < n; i++) {
			sa = br.readLine().split(" ");
			for (int j = 0; j < m; j++) {
				a[i] += Long.parseLong(sa[j]);
			}
		}
		br.close();

		long[][] dp = new long[2][n + 1];
		Arrays.fill(dp[0], Long.MIN_VALUE);
		Arrays.fill(dp[1], Long.MIN_VALUE);
		dp[0][0] = 0;
		dp[1][0] = 0;
		for (int i = 0; i < n; i++) {
			dp[0][i + 1] = dp[0][i];
			dp[1][i + 1] = dp[1][i];
			dp[1][i + 1] = Math.max(dp[1][i + 1], dp[0][i] + a[i]);
			dp[0][i + 1] = Math.max(dp[0][i + 1], dp[1][i] - a[i]);
		}
		System.out.println(Math.max(dp[0][n], dp[1][n]));
	}
}
0