結果

問題 No.45 回転寿司
ユーザー tsunabittsunabit
提出日時 2019-09-11 21:43:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 166 ms / 5,000 ms
コード長 444 bytes
コンパイル時間 3,874 ms
コンパイル使用メモリ 74,824 KB
実行使用メモリ 54,804 KB
最終ジャッジ日時 2024-07-02 16:53:37
合計ジャッジ時間 9,991 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 154 ms
54,476 KB
testcase_01 AC 160 ms
54,064 KB
testcase_02 AC 163 ms
54,388 KB
testcase_03 AC 166 ms
54,552 KB
testcase_04 AC 158 ms
54,140 KB
testcase_05 AC 126 ms
54,152 KB
testcase_06 AC 153 ms
54,804 KB
testcase_07 AC 163 ms
54,384 KB
testcase_08 AC 131 ms
54,212 KB
testcase_09 AC 166 ms
54,432 KB
testcase_10 AC 161 ms
54,348 KB
testcase_11 AC 139 ms
54,344 KB
testcase_12 AC 164 ms
54,552 KB
testcase_13 AC 124 ms
54,220 KB
testcase_14 AC 129 ms
53,892 KB
testcase_15 AC 156 ms
54,208 KB
testcase_16 AC 137 ms
54,272 KB
testcase_17 AC 153 ms
54,456 KB
testcase_18 AC 138 ms
54,628 KB
testcase_19 AC 155 ms
54,440 KB
testcase_20 AC 110 ms
52,944 KB
testcase_21 AC 122 ms
53,864 KB
testcase_22 AC 105 ms
53,000 KB
testcase_23 AC 107 ms
53,336 KB
testcase_24 AC 114 ms
54,060 KB
testcase_25 AC 114 ms
54,124 KB
testcase_26 AC 162 ms
54,164 KB
testcase_27 AC 159 ms
54,336 KB
testcase_28 AC 153 ms
54,160 KB
testcase_29 AC 160 ms
54,424 KB
testcase_30 AC 154 ms
54,436 KB
testcase_31 AC 110 ms
54,112 KB
testcase_32 AC 104 ms
52,748 KB
testcase_33 AC 155 ms
54,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No45 {
	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();
		
		int[] r = new int[n];
		r[0] = v[0];
		if(n > 1) r[1] = Math.max(r[0], v[1]);
		for(int i = 2; i < n; i++) r[i] = Math.max(r[i-1], r[i-2] + v[i]);
		System.out.println(r[n-1]);
	}
}
0