結果
問題 | No.505 カードの数式2 |
ユーザー | akitsu818 |
提出日時 | 2017-04-30 18:08:55 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 642 bytes |
コンパイル時間 | 2,096 ms |
コンパイル使用メモリ | 74,656 KB |
実行使用メモリ | 55,968 KB |
最終ジャッジ日時 | 2024-09-13 23:52:08 |
合計ジャッジ時間 | 8,515 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 133 ms
41,072 KB |
testcase_01 | AC | 132 ms
41,084 KB |
testcase_02 | AC | 216 ms
41,176 KB |
testcase_03 | AC | 130 ms
40,880 KB |
testcase_04 | AC | 134 ms
41,432 KB |
testcase_05 | AC | 134 ms
41,260 KB |
testcase_06 | AC | 132 ms
40,980 KB |
testcase_07 | AC | 133 ms
41,192 KB |
testcase_08 | AC | 133 ms
41,220 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 131 ms
41,096 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 133 ms
41,096 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 118 ms
39,932 KB |
testcase_20 | AC | 135 ms
41,012 KB |
testcase_21 | AC | 215 ms
41,296 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
ソースコード
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(0,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))); } } }