結果

問題 No.45 回転寿司
ユーザー jimanojimano
提出日時 2018-02-04 21:11:20
言語 Java
(openjdk 23)
結果
AC  
実行時間 64 ms / 5,000 ms
コード長 796 bytes
コンパイル時間 5,208 ms
コンパイル使用メモリ 76,604 KB
実行使用メモリ 37,060 KB
最終ジャッジ日時 2024-12-27 18:42:14
合計ジャッジ時間 8,158 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
36,808 KB
testcase_01 AC 64 ms
36,532 KB
testcase_02 AC 64 ms
36,980 KB
testcase_03 AC 60 ms
36,788 KB
testcase_04 AC 55 ms
36,696 KB
testcase_05 AC 51 ms
36,812 KB
testcase_06 AC 51 ms
37,008 KB
testcase_07 AC 53 ms
36,524 KB
testcase_08 AC 53 ms
36,444 KB
testcase_09 AC 53 ms
36,704 KB
testcase_10 AC 52 ms
36,956 KB
testcase_11 AC 52 ms
36,800 KB
testcase_12 AC 56 ms
36,580 KB
testcase_13 AC 56 ms
36,736 KB
testcase_14 AC 54 ms
36,804 KB
testcase_15 AC 53 ms
36,624 KB
testcase_16 AC 55 ms
36,868 KB
testcase_17 AC 53 ms
36,820 KB
testcase_18 AC 52 ms
36,580 KB
testcase_19 AC 56 ms
36,964 KB
testcase_20 AC 52 ms
36,916 KB
testcase_21 AC 54 ms
36,808 KB
testcase_22 AC 55 ms
36,444 KB
testcase_23 AC 58 ms
36,788 KB
testcase_24 AC 57 ms
36,736 KB
testcase_25 AC 55 ms
36,568 KB
testcase_26 AC 58 ms
36,788 KB
testcase_27 AC 53 ms
36,788 KB
testcase_28 AC 55 ms
36,944 KB
testcase_29 AC 47 ms
36,800 KB
testcase_30 AC 55 ms
37,060 KB
testcase_31 AC 51 ms
36,664 KB
testcase_32 AC 55 ms
36,540 KB
testcase_33 AC 58 ms
36,852 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