結果

問題 No.45 回転寿司
ユーザー holegumaholeguma
提出日時 2015-08-11 23:09:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 60 ms / 5,000 ms
コード長 615 bytes
コンパイル時間 2,669 ms
コンパイル使用メモリ 74,480 KB
実行使用メモリ 37,372 KB
最終ジャッジ日時 2024-06-08 09:52:24
合計ジャッジ時間 5,657 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
37,052 KB
testcase_01 AC 56 ms
36,812 KB
testcase_02 AC 56 ms
37,132 KB
testcase_03 AC 57 ms
36,736 KB
testcase_04 AC 55 ms
37,036 KB
testcase_05 AC 51 ms
37,372 KB
testcase_06 AC 55 ms
36,892 KB
testcase_07 AC 56 ms
37,324 KB
testcase_08 AC 54 ms
37,328 KB
testcase_09 AC 56 ms
37,232 KB
testcase_10 AC 54 ms
37,352 KB
testcase_11 AC 57 ms
37,092 KB
testcase_12 AC 55 ms
37,320 KB
testcase_13 AC 52 ms
37,352 KB
testcase_14 AC 52 ms
37,152 KB
testcase_15 AC 55 ms
36,804 KB
testcase_16 AC 55 ms
37,264 KB
testcase_17 AC 54 ms
37,088 KB
testcase_18 AC 53 ms
37,264 KB
testcase_19 AC 56 ms
37,268 KB
testcase_20 AC 54 ms
37,224 KB
testcase_21 AC 53 ms
37,284 KB
testcase_22 AC 51 ms
37,312 KB
testcase_23 AC 51 ms
37,168 KB
testcase_24 AC 51 ms
36,964 KB
testcase_25 AC 52 ms
37,120 KB
testcase_26 AC 54 ms
37,136 KB
testcase_27 AC 56 ms
37,196 KB
testcase_28 AC 55 ms
37,304 KB
testcase_29 AC 55 ms
36,860 KB
testcase_30 AC 57 ms
37,168 KB
testcase_31 AC 55 ms
37,108 KB
testcase_32 AC 53 ms
37,108 KB
testcase_33 AC 60 ms
37,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.StringTokenizer;

class Main{

static final PrintWriter out=new PrintWriter(System.out);

public static void main(String[] args) throws IOException{
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
String line="";
while((line=br.readLine())!=null&&!line.isEmpty()){
int n=Integer.parseInt(line);
int[] dp=new int[n+2];
int[] v=new int[n];
StringTokenizer st=new StringTokenizer(br.readLine());
for(int i=0;i<n;i++) v[i]=Integer.parseInt(st.nextToken());
for(int i=n-1;i>=0;i--){
dp[i]=Math.max(dp[i+1],dp[i+2]+v[i]);
}
out.println(dp[0]);
out.flush();
}
}
}
0