結果

問題 No.45 回転寿司
ユーザー spaciaspacia
提出日時 2016-01-04 17:18:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 55 ms / 5,000 ms
コード長 652 bytes
コンパイル時間 2,450 ms
コンパイル使用メモリ 75,436 KB
実行使用メモリ 37,352 KB
最終ジャッジ日時 2024-06-08 10:08:18
合計ジャッジ時間 5,366 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,228 KB
testcase_01 AC 55 ms
37,268 KB
testcase_02 AC 55 ms
37,180 KB
testcase_03 AC 54 ms
36,920 KB
testcase_04 AC 54 ms
37,312 KB
testcase_05 AC 51 ms
36,884 KB
testcase_06 AC 53 ms
37,184 KB
testcase_07 AC 54 ms
37,024 KB
testcase_08 AC 51 ms
36,664 KB
testcase_09 AC 54 ms
37,312 KB
testcase_10 AC 53 ms
36,988 KB
testcase_11 AC 53 ms
36,876 KB
testcase_12 AC 54 ms
37,016 KB
testcase_13 AC 52 ms
36,672 KB
testcase_14 AC 52 ms
36,680 KB
testcase_15 AC 52 ms
37,060 KB
testcase_16 AC 53 ms
36,784 KB
testcase_17 AC 53 ms
36,884 KB
testcase_18 AC 53 ms
37,124 KB
testcase_19 AC 55 ms
37,180 KB
testcase_20 AC 52 ms
36,532 KB
testcase_21 AC 51 ms
37,216 KB
testcase_22 AC 51 ms
36,880 KB
testcase_23 AC 52 ms
36,868 KB
testcase_24 AC 52 ms
37,016 KB
testcase_25 AC 51 ms
37,224 KB
testcase_26 AC 55 ms
37,144 KB
testcase_27 AC 55 ms
37,180 KB
testcase_28 AC 53 ms
37,108 KB
testcase_29 AC 53 ms
37,352 KB
testcase_30 AC 55 ms
37,284 KB
testcase_31 AC 52 ms
36,948 KB
testcase_32 AC 53 ms
37,312 KB
testcase_33 AC 55 ms
36,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.math.*;

class Main {
	
	public static void out (Object o) {
		System.out.println(o);
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		int n = Integer.parseInt(br.readLine());
		int[] v = new int[n];
		int[] d = new int[n];
		String[] s = br.readLine().split(" ");
		
		for (int i = 0; i < n; i++)
			v[i] = Integer.parseInt(s[i]);
		
		d[0] = v[0];
		if (n >= 2) d[1] = Math.max(v[0] , v[1]);
		for (int i = 2; i < n; i++)
			d[i] = Math.max(d[i - 1] , d[i - 2] + v[i]);
		
		out(d[n - 1]);
		
	}
}
0