結果

問題 No.45 回転寿司
ユーザー リチウムリチウム
提出日時 2014-10-25 15:05:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 198 ms / 5,000 ms
コード長 545 bytes
コンパイル時間 2,114 ms
コンパイル使用メモリ 74,212 KB
実行使用メモリ 43,144 KB
最終ジャッジ日時 2024-06-08 09:18:15
合計ジャッジ時間 9,002 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 179 ms
42,016 KB
testcase_01 AC 180 ms
42,204 KB
testcase_02 AC 194 ms
42,444 KB
testcase_03 AC 190 ms
42,092 KB
testcase_04 AC 193 ms
42,736 KB
testcase_05 AC 152 ms
41,684 KB
testcase_06 AC 174 ms
42,144 KB
testcase_07 AC 185 ms
43,144 KB
testcase_08 AC 168 ms
42,052 KB
testcase_09 AC 192 ms
42,400 KB
testcase_10 AC 166 ms
42,348 KB
testcase_11 AC 164 ms
42,168 KB
testcase_12 AC 198 ms
42,308 KB
testcase_13 AC 146 ms
41,860 KB
testcase_14 AC 140 ms
41,788 KB
testcase_15 AC 179 ms
42,216 KB
testcase_16 AC 158 ms
41,736 KB
testcase_17 AC 181 ms
42,112 KB
testcase_18 AC 159 ms
42,004 KB
testcase_19 AC 187 ms
42,232 KB
testcase_20 AC 143 ms
41,668 KB
testcase_21 AC 145 ms
41,652 KB
testcase_22 AC 132 ms
41,400 KB
testcase_23 AC 133 ms
40,988 KB
testcase_24 AC 143 ms
41,548 KB
testcase_25 AC 134 ms
41,512 KB
testcase_26 AC 183 ms
42,240 KB
testcase_27 AC 187 ms
42,648 KB
testcase_28 AC 178 ms
41,900 KB
testcase_29 AC 197 ms
42,700 KB
testcase_30 AC 182 ms
42,556 KB
testcase_31 AC 132 ms
41,436 KB
testcase_32 AC 133 ms
41,264 KB
testcase_33 AC 196 ms
43,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main(String[] args) {
		Scanner sc=new Scanner(System.in);
		int n=sc.nextInt();
		int v[]=new int[n];
		for(int i=0;i<n;i++){
			v[i]=sc.nextInt();
		}
		if(n==1){
			System.out.println(v[0]);
			return;
		}
		if(n==2){
			System.out.println(Math.max(v[0],v[1]));
			return;
		}
		int ans[]=new int[n];
		ans[0]=v[0];
		ans[1]=Math.max(v[0],v[1]);
		for(int i=2;i<n;i++){
			ans[i]=Math.max(ans[i-1],ans[i-2]+v[i]);
		}
		System.out.println(ans[n-1]);
	}
	}
0