結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 170 ms
54,052 KB
testcase_02 AC 176 ms
54,212 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 139 ms
53,912 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 155 ms
54,080 KB
testcase_09 AC 168 ms
54,424 KB
testcase_10 WA -
testcase_11 AC 139 ms
53,964 KB
testcase_12 AC 172 ms
54,412 KB
testcase_13 WA -
testcase_14 AC 132 ms
54,108 KB
testcase_15 AC 157 ms
54,324 KB
testcase_16 AC 156 ms
54,172 KB
testcase_17 AC 157 ms
54,160 KB
testcase_18 WA -
testcase_19 AC 171 ms
54,404 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 115 ms
52,724 KB
testcase_23 AC 125 ms
54,060 KB
testcase_24 AC 110 ms
52,520 KB
testcase_25 AC 120 ms
54,104 KB
testcase_26 AC 164 ms
54,232 KB
testcase_27 AC 167 ms
54,300 KB
testcase_28 WA -
testcase_29 AC 173 ms
54,192 KB
testcase_30 AC 178 ms
53,996 KB
testcase_31 AC 122 ms
53,972 KB
testcase_32 AC 128 ms
53,804 KB
testcase_33 AC 178 ms
54,184 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 = Integer.max(V.get(0), V.get(1)),D1 = Integer.min(V.get(0), V.get(1));
			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