結果

問題 No.45 回転寿司
ユーザー jimanojimano
提出日時 2018-02-04 21:11:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 52 ms / 5,000 ms
コード長 796 bytes
コンパイル時間 2,944 ms
コンパイル使用メモリ 77,484 KB
実行使用メモリ 50,356 KB
最終ジャッジ日時 2024-06-08 12:05:34
合計ジャッジ時間 5,520 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
50,296 KB
testcase_01 AC 51 ms
49,872 KB
testcase_02 AC 51 ms
49,812 KB
testcase_03 AC 50 ms
50,268 KB
testcase_04 AC 51 ms
50,016 KB
testcase_05 AC 49 ms
50,232 KB
testcase_06 AC 48 ms
50,148 KB
testcase_07 AC 48 ms
50,016 KB
testcase_08 AC 47 ms
49,844 KB
testcase_09 AC 49 ms
50,216 KB
testcase_10 AC 47 ms
50,220 KB
testcase_11 AC 47 ms
50,176 KB
testcase_12 AC 48 ms
50,260 KB
testcase_13 AC 47 ms
49,740 KB
testcase_14 AC 48 ms
50,192 KB
testcase_15 AC 47 ms
49,992 KB
testcase_16 AC 48 ms
50,220 KB
testcase_17 AC 47 ms
49,844 KB
testcase_18 AC 46 ms
50,184 KB
testcase_19 AC 49 ms
50,216 KB
testcase_20 AC 46 ms
50,204 KB
testcase_21 AC 46 ms
50,200 KB
testcase_22 AC 45 ms
49,960 KB
testcase_23 AC 46 ms
49,956 KB
testcase_24 AC 46 ms
49,860 KB
testcase_25 AC 46 ms
50,140 KB
testcase_26 AC 47 ms
50,356 KB
testcase_27 AC 47 ms
50,008 KB
testcase_28 AC 48 ms
50,024 KB
testcase_29 AC 47 ms
50,216 KB
testcase_30 AC 48 ms
49,988 KB
testcase_31 AC 46 ms
50,080 KB
testcase_32 AC 46 ms
50,192 KB
testcase_33 AC 48 ms
50,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder.lv2;

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

public class No0045 {
	public static void main(String[] args) {
		try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {
			int cntDish = Integer.parseInt(br.readLine());
			String[] str = br.readLine().split(" ");
			int[] v = new int[cntDish];
			int[] max = new int[cntDish];

			for (int i = 0; i < cntDish; i++) {
				v[i] = Integer.parseInt(str[i]);
			}

			max[0] = v[0];
			if (max.length > 1) {
				max[1] = Math.max(v[0], v[1]);
				for (int i = 2; i < cntDish; i++) {
					max[i] = Math.max(max[i - 1], max[i - 2] + v[i]);
				}
			}

			System.out.println(max[cntDish - 1]);
		} catch (IOException e) {
			e.printStackTrace();
		}
	}
}
0