結果

問題 No.45 回転寿司
ユーザー uafr_csuafr_cs
提出日時 2015-06-03 17:18:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 174 ms / 5,000 ms
コード長 573 bytes
コンパイル時間 1,847 ms
コンパイル使用メモリ 74,052 KB
実行使用メモリ 42,400 KB
最終ジャッジ日時 2024-06-08 09:37:45
合計ジャッジ時間 7,886 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 170 ms
41,616 KB
testcase_01 AC 160 ms
41,624 KB
testcase_02 AC 174 ms
41,944 KB
testcase_03 AC 165 ms
42,112 KB
testcase_04 AC 167 ms
42,040 KB
testcase_05 AC 134 ms
41,324 KB
testcase_06 AC 151 ms
42,016 KB
testcase_07 AC 155 ms
41,848 KB
testcase_08 AC 149 ms
41,548 KB
testcase_09 AC 170 ms
42,120 KB
testcase_10 AC 154 ms
41,996 KB
testcase_11 AC 142 ms
41,352 KB
testcase_12 AC 169 ms
42,156 KB
testcase_13 AC 135 ms
41,500 KB
testcase_14 AC 121 ms
41,180 KB
testcase_15 AC 164 ms
41,740 KB
testcase_16 AC 147 ms
41,596 KB
testcase_17 AC 154 ms
41,712 KB
testcase_18 AC 151 ms
41,908 KB
testcase_19 AC 159 ms
41,932 KB
testcase_20 AC 122 ms
41,316 KB
testcase_21 AC 127 ms
41,228 KB
testcase_22 AC 118 ms
41,136 KB
testcase_23 AC 115 ms
41,144 KB
testcase_24 AC 124 ms
40,984 KB
testcase_25 AC 116 ms
40,848 KB
testcase_26 AC 157 ms
41,920 KB
testcase_27 AC 161 ms
41,920 KB
testcase_28 AC 161 ms
41,796 KB
testcase_29 AC 166 ms
42,060 KB
testcase_30 AC 161 ms
41,800 KB
testcase_31 AC 117 ms
40,960 KB
testcase_32 AC 118 ms
41,260 KB
testcase_33 AC 167 ms
42,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {
	
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		
		final int N = sc.nextInt();
		
		int eated = 0, not_eated = 0, prev_eated = 0, prev_not_eated = 0;
		
		for(int i = 0; i < N; i++){
			final int v = sc.nextInt();
			
			eated = prev_not_eated + v;
			not_eated = Math.max(prev_eated, prev_not_eated);
			
			prev_eated = eated;
			prev_not_eated = not_eated;
		}
		
		System.out.println(Math.max(prev_eated, prev_not_eated));
		
	}
	
}
0