結果

問題 No.45 回転寿司
ユーザー tetsutetsu
提出日時 2017-10-16 07:29:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 176 ms / 5,000 ms
コード長 533 bytes
コンパイル時間 4,383 ms
コンパイル使用メモリ 74,352 KB
実行使用メモリ 42,352 KB
最終ジャッジ日時 2024-06-08 11:39:58
合計ジャッジ時間 11,115 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 153 ms
41,580 KB
testcase_01 AC 158 ms
41,668 KB
testcase_02 AC 176 ms
42,352 KB
testcase_03 AC 167 ms
42,108 KB
testcase_04 AC 168 ms
41,588 KB
testcase_05 AC 130 ms
41,084 KB
testcase_06 AC 152 ms
41,740 KB
testcase_07 AC 173 ms
42,196 KB
testcase_08 AC 145 ms
41,704 KB
testcase_09 AC 168 ms
42,168 KB
testcase_10 AC 160 ms
41,776 KB
testcase_11 AC 132 ms
41,528 KB
testcase_12 AC 167 ms
41,856 KB
testcase_13 AC 130 ms
41,372 KB
testcase_14 AC 133 ms
40,976 KB
testcase_15 AC 151 ms
41,484 KB
testcase_16 AC 151 ms
41,780 KB
testcase_17 AC 153 ms
41,352 KB
testcase_18 AC 152 ms
41,316 KB
testcase_19 AC 158 ms
41,464 KB
testcase_20 AC 128 ms
41,384 KB
testcase_21 AC 128 ms
41,060 KB
testcase_22 AC 119 ms
41,272 KB
testcase_23 AC 106 ms
39,820 KB
testcase_24 AC 123 ms
41,244 KB
testcase_25 AC 122 ms
41,160 KB
testcase_26 AC 170 ms
41,456 KB
testcase_27 AC 168 ms
42,152 KB
testcase_28 AC 163 ms
41,932 KB
testcase_29 AC 165 ms
42,112 KB
testcase_30 AC 162 ms
41,828 KB
testcase_31 AC 107 ms
39,716 KB
testcase_32 AC 120 ms
40,836 KB
testcase_33 AC 163 ms
41,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;
import java.util.*;

public class P45 {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		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[] toru = new int[N];
		int[] toranai = new int[N];
		toru[0] = V[0];
		for(int i=1; i<N; i++) {
			toru[i] = toranai[i-1]+V[i];
			toranai[i] = Math.max(toru[i-1], toranai[i-1]);
		}
		System.out.println(Math.max(toru[N-1], toranai[N-1]));
	}

}
0