結果

問題 No.505 カードの数式2
ユーザー akitsu818akitsu818
提出日時 2017-04-30 18:15:11
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 648 bytes
コンパイル時間 2,355 ms
コンパイル使用メモリ 74,636 KB
実行使用メモリ 54,436 KB
最終ジャッジ日時 2024-09-13 23:53:12
合計ジャッジ時間 8,056 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
54,076 KB
testcase_01 AC 135 ms
53,964 KB
testcase_02 AC 161 ms
54,008 KB
testcase_03 AC 135 ms
54,228 KB
testcase_04 AC 136 ms
54,208 KB
testcase_05 AC 135 ms
53,960 KB
testcase_06 AC 135 ms
54,084 KB
testcase_07 AC 133 ms
54,160 KB
testcase_08 AC 136 ms
54,112 KB
testcase_09 AC 136 ms
54,204 KB
testcase_10 AC 134 ms
53,868 KB
testcase_11 WA -
testcase_12 AC 134 ms
53,944 KB
testcase_13 AC 134 ms
53,732 KB
testcase_14 AC 132 ms
53,836 KB
testcase_15 AC 135 ms
53,952 KB
testcase_16 AC 135 ms
53,968 KB
testcase_17 WA -
testcase_18 AC 134 ms
53,920 KB
testcase_19 AC 135 ms
53,940 KB
testcase_20 AC 142 ms
54,064 KB
testcase_21 AC 161 ms
54,096 KB
testcase_22 WA -
testcase_23 AC 159 ms
53,892 KB
testcase_24 AC 161 ms
53,668 KB
testcase_25 AC 161 ms
54,164 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 159 ms
54,168 KB
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	static int target;
	public static void main(String argas[]){

		Scanner cin = new Scanner(System.in);

		target = cin.nextInt();
		int list[] = new int[target];

		for(int i=0;i<target;i++){
			list[i] = cin.nextInt();
		}
		cin.close();
		System.out.println(dfs(1,list[0],list));
	}

	static int dfs(int count,int sum,int array[]){
		if(count==target-1){
			return Math.max(sum*array[count], Math.max(sum+array[count],sum-array[count]));
		}else{
			return Math.max(dfs(count+1,sum*array[count],array), Math.max(dfs(count+1,sum+array[count],array), dfs(count+1,sum-array[count],array)));
		}
	}

}
0