結果

問題 No.45 回転寿司
ユーザー kuramubonnkuramubonn
提出日時 2023-02-02 23:48:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 190 ms / 5,000 ms
コード長 813 bytes
コンパイル時間 2,584 ms
コンパイル使用メモリ 76,788 KB
実行使用メモリ 56,372 KB
最終ジャッジ日時 2024-07-02 09:38:31
合計ジャッジ時間 8,510 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 160 ms
53,952 KB
testcase_01 AC 173 ms
54,180 KB
testcase_02 AC 176 ms
54,508 KB
testcase_03 AC 190 ms
54,708 KB
testcase_04 AC 176 ms
54,108 KB
testcase_05 AC 117 ms
53,748 KB
testcase_06 AC 162 ms
54,388 KB
testcase_07 AC 167 ms
54,240 KB
testcase_08 AC 151 ms
54,112 KB
testcase_09 AC 177 ms
54,408 KB
testcase_10 AC 150 ms
54,152 KB
testcase_11 AC 123 ms
53,548 KB
testcase_12 AC 179 ms
54,668 KB
testcase_13 AC 125 ms
54,032 KB
testcase_14 AC 125 ms
54,124 KB
testcase_15 AC 159 ms
54,376 KB
testcase_16 AC 150 ms
54,400 KB
testcase_17 AC 164 ms
53,912 KB
testcase_18 AC 164 ms
54,048 KB
testcase_19 AC 185 ms
54,436 KB
testcase_20 AC 112 ms
52,796 KB
testcase_21 AC 123 ms
54,240 KB
testcase_22 AC 122 ms
53,808 KB
testcase_23 AC 108 ms
52,908 KB
testcase_24 AC 102 ms
52,708 KB
testcase_25 AC 98 ms
52,540 KB
testcase_26 AC 167 ms
56,372 KB
testcase_27 AC 181 ms
54,456 KB
testcase_28 AC 158 ms
54,396 KB
testcase_29 AC 170 ms
54,540 KB
testcase_30 AC 171 ms
54,380 KB
testcase_31 AC 117 ms
53,680 KB
testcase_32 AC 109 ms
53,912 KB
testcase_33 AC 188 ms
54,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class Main{
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		int[] data = new int [sc.nextInt()];
		int[] vect = new int [data.length];
		
		for(int i = 0 ; i < data.length ; i++)data[i] = sc.nextInt();
		if(data.length == 1) {
			System.out.println(data[0]);
			return;
		}
		if(data.length == 2) {
			if(data[0] < data[1])System.out.println(data[1]);
			else System.out.println(data[0]);
			return;
		}
		vect[0] = data[0];
		vect[1] = data[1];
		for(int i = 2 ; i < data.length ; i++) {
			int max = 0;
			for(int j = 0 ; j < i - 1 ; j++) {
				if(data[i] + vect[j] > max)max = data[i] + vect[j];
			}
			vect[i] = max;
		}
		int max = 0;
		for(int i = 0 ; i < vect.length ; i++) 
			if(max < vect[i])max = vect[i];
		System.out.println(max);
	}
}
0