結果

問題 No.45 回転寿司
ユーザー FpmpAmpmFpmpAmpm
提出日時 2016-10-23 14:30:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 179 ms / 5,000 ms
コード長 578 bytes
コンパイル時間 2,049 ms
コンパイル使用メモリ 73,824 KB
実行使用メモリ 42,268 KB
最終ジャッジ日時 2024-06-08 11:00:56
合計ジャッジ時間 8,331 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 154 ms
41,824 KB
testcase_01 AC 171 ms
41,936 KB
testcase_02 AC 174 ms
42,124 KB
testcase_03 AC 160 ms
42,128 KB
testcase_04 AC 156 ms
41,920 KB
testcase_05 AC 129 ms
41,100 KB
testcase_06 AC 163 ms
41,940 KB
testcase_07 AC 166 ms
42,144 KB
testcase_08 AC 140 ms
41,260 KB
testcase_09 AC 174 ms
42,268 KB
testcase_10 AC 155 ms
41,904 KB
testcase_11 AC 139 ms
41,768 KB
testcase_12 AC 171 ms
42,124 KB
testcase_13 AC 128 ms
41,228 KB
testcase_14 AC 128 ms
41,304 KB
testcase_15 AC 171 ms
41,948 KB
testcase_16 AC 144 ms
41,448 KB
testcase_17 AC 148 ms
41,748 KB
testcase_18 AC 152 ms
41,680 KB
testcase_19 AC 153 ms
41,828 KB
testcase_20 AC 111 ms
39,796 KB
testcase_21 AC 125 ms
41,180 KB
testcase_22 AC 115 ms
41,400 KB
testcase_23 AC 118 ms
41,356 KB
testcase_24 AC 120 ms
41,144 KB
testcase_25 AC 118 ms
40,288 KB
testcase_26 AC 165 ms
41,900 KB
testcase_27 AC 164 ms
41,936 KB
testcase_28 AC 163 ms
41,980 KB
testcase_29 AC 164 ms
42,060 KB
testcase_30 AC 168 ms
41,884 KB
testcase_31 AC 119 ms
41,124 KB
testcase_32 AC 123 ms
41,232 KB
testcase_33 AC 179 ms
42,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class sushi2 {
	
	private static final int MAX_N = 1000;
	static int v[] = new int[MAX_N]; //sushiの価値
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		for (int i = 0; i < n; i++) {
			v[i] = sc.nextInt();
		}
		sc.close();
		int[] sum = {0,0};//{2個前までの合計,1個前までの合計}
		
		int b = 0;
		for (int i = 0 ; i < n ;i++) {
			b = Math.max(sum[0] + v[i] , sum[1]);
			sum[0] = sum[1];
			sum[1] = b;			
		}
		System.out.println(Math.max(sum[0], sum[1]));		
	}
}
0