結果

問題 No.45 回転寿司
ユーザー shinwisteriashinwisteria
提出日時 2017-03-21 20:26:50
言語 Java
(openjdk 23)
結果
AC  
実行時間 196 ms / 5,000 ms
コード長 742 bytes
コンパイル時間 3,586 ms
コンパイル使用メモリ 78,064 KB
実行使用メモリ 42,488 KB
最終ジャッジ日時 2024-12-27 16:13:40
合計ジャッジ時間 10,507 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 172 ms
41,612 KB
testcase_01 AC 185 ms
41,708 KB
testcase_02 AC 172 ms
42,080 KB
testcase_03 AC 189 ms
42,076 KB
testcase_04 AC 169 ms
41,848 KB
testcase_05 AC 137 ms
41,180 KB
testcase_06 AC 170 ms
41,924 KB
testcase_07 AC 189 ms
42,108 KB
testcase_08 AC 161 ms
41,300 KB
testcase_09 AC 188 ms
41,936 KB
testcase_10 AC 171 ms
41,724 KB
testcase_11 AC 164 ms
41,812 KB
testcase_12 AC 183 ms
41,804 KB
testcase_13 AC 144 ms
41,084 KB
testcase_14 AC 142 ms
41,700 KB
testcase_15 AC 173 ms
41,640 KB
testcase_16 AC 156 ms
41,428 KB
testcase_17 AC 178 ms
41,820 KB
testcase_18 AC 160 ms
41,448 KB
testcase_19 AC 187 ms
41,972 KB
testcase_20 AC 140 ms
41,280 KB
testcase_21 AC 146 ms
41,540 KB
testcase_22 AC 135 ms
40,864 KB
testcase_23 AC 135 ms
41,084 KB
testcase_24 AC 123 ms
40,916 KB
testcase_25 AC 136 ms
40,788 KB
testcase_26 AC 178 ms
41,920 KB
testcase_27 AC 174 ms
41,804 KB
testcase_28 AC 176 ms
41,800 KB
testcase_29 AC 182 ms
42,004 KB
testcase_30 AC 185 ms
42,448 KB
testcase_31 AC 129 ms
39,736 KB
testcase_32 AC 139 ms
41,104 KB
testcase_33 AC 196 ms
42,488 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