結果

問題 No.45 回転寿司
ユーザー リチウムリチウム
提出日時 2014-10-25 15:05:44
言語 Java
(openjdk 23)
結果
AC  
実行時間 193 ms / 5,000 ms
コード長 545 bytes
コンパイル時間 6,937 ms
コンパイル使用メモリ 83,220 KB
実行使用メモリ 42,284 KB
最終ジャッジ日時 2024-12-27 10:47:03
合計ジャッジ時間 8,914 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 181 ms
41,572 KB
testcase_01 AC 187 ms
41,924 KB
testcase_02 AC 187 ms
41,756 KB
testcase_03 AC 186 ms
42,284 KB
testcase_04 AC 187 ms
41,864 KB
testcase_05 AC 145 ms
41,120 KB
testcase_06 AC 184 ms
42,160 KB
testcase_07 AC 193 ms
42,028 KB
testcase_08 AC 171 ms
41,360 KB
testcase_09 AC 191 ms
41,752 KB
testcase_10 AC 179 ms
41,740 KB
testcase_11 AC 152 ms
41,464 KB
testcase_12 AC 183 ms
42,056 KB
testcase_13 AC 149 ms
40,972 KB
testcase_14 AC 143 ms
41,120 KB
testcase_15 AC 171 ms
41,480 KB
testcase_16 AC 172 ms
41,896 KB
testcase_17 AC 182 ms
41,436 KB
testcase_18 AC 167 ms
41,716 KB
testcase_19 AC 186 ms
42,060 KB
testcase_20 AC 141 ms
41,256 KB
testcase_21 AC 144 ms
41,088 KB
testcase_22 AC 135 ms
41,028 KB
testcase_23 AC 137 ms
40,820 KB
testcase_24 AC 133 ms
41,400 KB
testcase_25 AC 132 ms
41,060 KB
testcase_26 AC 182 ms
41,480 KB
testcase_27 AC 178 ms
41,848 KB
testcase_28 AC 169 ms
41,832 KB
testcase_29 AC 185 ms
41,796 KB
testcase_30 AC 190 ms
41,764 KB
testcase_31 AC 134 ms
41,400 KB
testcase_32 AC 132 ms
41,100 KB
testcase_33 AC 192 ms
42,148 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