結果

問題 No.45 回転寿司
ユーザー shinwisteriashinwisteria
提出日時 2017-03-21 20:02:20
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 594 bytes
コンパイル時間 3,417 ms
コンパイル使用メモリ 75,868 KB
実行使用メモリ 42,872 KB
最終ジャッジ日時 2024-07-05 06:08:50
合計ジャッジ時間 9,704 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
42,096 KB
testcase_01 AC 169 ms
42,344 KB
testcase_02 WA -
testcase_03 AC 173 ms
42,736 KB
testcase_04 AC 173 ms
41,920 KB
testcase_05 AC 125 ms
40,920 KB
testcase_06 AC 169 ms
42,012 KB
testcase_07 AC 172 ms
42,300 KB
testcase_08 WA -
testcase_09 AC 173 ms
42,304 KB
testcase_10 AC 166 ms
42,168 KB
testcase_11 WA -
testcase_12 AC 174 ms
42,872 KB
testcase_13 AC 134 ms
41,668 KB
testcase_14 AC 131 ms
41,596 KB
testcase_15 AC 165 ms
41,388 KB
testcase_16 WA -
testcase_17 AC 158 ms
42,072 KB
testcase_18 AC 158 ms
41,816 KB
testcase_19 WA -
testcase_20 AC 130 ms
41,540 KB
testcase_21 AC 134 ms
41,576 KB
testcase_22 AC 114 ms
40,416 KB
testcase_23 WA -
testcase_24 AC 121 ms
41,168 KB
testcase_25 AC 115 ms
40,432 KB
testcase_26 AC 173 ms
42,076 KB
testcase_27 WA -
testcase_28 AC 162 ms
42,048 KB
testcase_29 AC 172 ms
42,140 KB
testcase_30 AC 171 ms
42,184 KB
testcase_31 AC 123 ms
41,440 KB
testcase_32 AC 125 ms
41,276 KB
testcase_33 AC 178 ms
42,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Scanner;

public class Kaitenzushi { 

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int N = s.nextInt();
		ArrayList<Integer> V = new ArrayList<>();
		for(int i = 0;i < N;i++){
			V.add(s.nextInt());	
		}
		int MAX = 0;
		s.close();
		if(N == 1){
			MAX = V.get(0);
		}else {
			int D2 = V.get(1),D1 = V.get(0);
			if(N == 2){
				MAX = Integer.max(D1, D2);
			}else{
				for(int i = 2;i<N;i++){
					MAX = Integer.max(D1+V.get(i), D2);
					D1 = D2;
					D2 = MAX;
				}
			}
		}
		System.out.println(MAX);
	}
}
0