結果

問題 No.45 回転寿司
ユーザー shinwisteriashinwisteria
提出日時 2017-03-21 20:26:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 184 ms / 5,000 ms
コード長 742 bytes
コンパイル時間 3,790 ms
コンパイル使用メモリ 78,700 KB
実行使用メモリ 42,480 KB
最終ジャッジ日時 2024-06-08 11:14:59
合計ジャッジ時間 9,912 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 153 ms
41,588 KB
testcase_01 AC 155 ms
41,740 KB
testcase_02 AC 171 ms
41,932 KB
testcase_03 AC 179 ms
42,480 KB
testcase_04 AC 168 ms
42,032 KB
testcase_05 AC 136 ms
40,988 KB
testcase_06 AC 165 ms
41,832 KB
testcase_07 AC 175 ms
42,144 KB
testcase_08 AC 150 ms
41,516 KB
testcase_09 AC 163 ms
41,920 KB
testcase_10 AC 159 ms
42,104 KB
testcase_11 AC 139 ms
41,368 KB
testcase_12 AC 169 ms
42,340 KB
testcase_13 AC 128 ms
41,304 KB
testcase_14 AC 126 ms
41,140 KB
testcase_15 AC 164 ms
42,188 KB
testcase_16 AC 151 ms
41,904 KB
testcase_17 AC 156 ms
41,608 KB
testcase_18 AC 139 ms
41,384 KB
testcase_19 AC 179 ms
42,252 KB
testcase_20 AC 114 ms
40,140 KB
testcase_21 AC 133 ms
41,656 KB
testcase_22 AC 117 ms
41,008 KB
testcase_23 AC 101 ms
39,496 KB
testcase_24 AC 118 ms
40,700 KB
testcase_25 AC 112 ms
41,128 KB
testcase_26 AC 163 ms
41,768 KB
testcase_27 AC 184 ms
42,104 KB
testcase_28 AC 173 ms
41,884 KB
testcase_29 AC 157 ms
42,064 KB
testcase_30 AC 165 ms
42,052 KB
testcase_31 AC 117 ms
40,972 KB
testcase_32 AC 110 ms
39,908 KB
testcase_33 AC 179 ms
42,264 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 MAXp = 0,MAXn = 0;
		s.close();
		if(N == 1){
			MAXp = V.get(0);
		}else {
			int D1p = V.get(1),D2p = V.get(0);
			int D1n = D2p,D2n = 0;
			if(N == 2){
				MAXp = Integer.max(D1p, D2p);
			}else{
				for(int i = 2;i<N;i++){
					MAXp = Integer.max(D2p + V.get(i),D2n + V.get(i));
					MAXn = Integer.max(D1p,D2p);
					D2p = D1p;
					D2n = D1n;
					D1p = MAXp;
					D1n = MAXn;
				}
			}
		}
		System.out.println(Integer.max(MAXp, MAXn));
	}
}
0