結果

問題 No.45 回転寿司
ユーザー maruyuki95maruyuki95
提出日時 2020-05-25 10:19:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 182 ms / 5,000 ms
コード長 995 bytes
コンパイル時間 2,069 ms
コンパイル使用メモリ 78,484 KB
実行使用メモリ 42,400 KB
最終ジャッジ日時 2024-10-13 02:01:33
合計ジャッジ時間 8,421 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 163 ms
41,012 KB
testcase_01 AC 176 ms
42,032 KB
testcase_02 AC 175 ms
42,080 KB
testcase_03 AC 182 ms
42,304 KB
testcase_04 AC 178 ms
42,400 KB
testcase_05 AC 137 ms
41,272 KB
testcase_06 AC 175 ms
41,772 KB
testcase_07 AC 177 ms
42,160 KB
testcase_08 AC 147 ms
41,772 KB
testcase_09 AC 178 ms
42,312 KB
testcase_10 AC 167 ms
41,736 KB
testcase_11 AC 146 ms
41,716 KB
testcase_12 AC 182 ms
42,036 KB
testcase_13 AC 135 ms
41,212 KB
testcase_14 AC 136 ms
41,280 KB
testcase_15 AC 174 ms
41,824 KB
testcase_16 AC 152 ms
41,848 KB
testcase_17 AC 171 ms
41,832 KB
testcase_18 AC 154 ms
41,696 KB
testcase_19 AC 176 ms
41,932 KB
testcase_20 AC 132 ms
41,280 KB
testcase_21 AC 137 ms
41,620 KB
testcase_22 AC 130 ms
41,092 KB
testcase_23 AC 126 ms
40,996 KB
testcase_24 AC 127 ms
41,408 KB
testcase_25 AC 125 ms
41,208 KB
testcase_26 AC 167 ms
42,092 KB
testcase_27 AC 171 ms
42,012 KB
testcase_28 AC 173 ms
41,764 KB
testcase_29 AC 181 ms
42,008 KB
testcase_30 AC 177 ms
41,980 KB
testcase_31 AC 114 ms
39,788 KB
testcase_32 AC 126 ms
41,452 KB
testcase_33 AC 178 ms
42,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int sushiNum = sc.nextInt();
		int[] sushiTastes = new int[sushiNum];
		for (int i = 0; i < sushiNum; i++) {
			sushiTastes[i] = sc.nextInt();
		}

		int ret = new Main().execute(sushiNum, sushiTastes);
		System.out.println(ret);
	}

	int execute(int sushiNum, int[] sushiTastes) {
		int lastOnMaxTasteSum = 0;
		int lastOffMaxTasteSum = 0;
		boolean lastOff = true;

		for (int taste : sushiTastes) {
			if (lastOff) {
				lastOnMaxTasteSum = lastOffMaxTasteSum + taste;
				lastOff = false;
			} else {
				int newLastOnMaxTasteSum = lastOffMaxTasteSum + taste;
				int newLastOffMaxTasteSum = lastOnMaxTasteSum;

				lastOnMaxTasteSum = newLastOnMaxTasteSum;
				lastOffMaxTasteSum = newLastOffMaxTasteSum;

				if (lastOnMaxTasteSum <= lastOffMaxTasteSum) {
					lastOff = true;
				}
			}

		}

		return Math.max(lastOnMaxTasteSum, lastOffMaxTasteSum);
	}

}
0