結果
問題 | No.505 カードの数式2 |
ユーザー | akitsu818 |
提出日時 | 2017-04-30 18:25:37 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,214 bytes |
コンパイル時間 | 2,482 ms |
コンパイル使用メモリ | 77,640 KB |
実行使用メモリ | 47,388 KB |
最終ジャッジ日時 | 2024-09-13 23:54:03 |
合計ジャッジ時間 | 12,795 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 135 ms
47,224 KB |
testcase_01 | AC | 136 ms
41,480 KB |
testcase_02 | AC | 528 ms
41,772 KB |
testcase_03 | AC | 135 ms
41,640 KB |
testcase_04 | AC | 134 ms
41,556 KB |
testcase_05 | AC | 134 ms
41,520 KB |
testcase_06 | AC | 135 ms
41,464 KB |
testcase_07 | AC | 135 ms
41,624 KB |
testcase_08 | AC | 130 ms
41,340 KB |
testcase_09 | AC | 129 ms
41,440 KB |
testcase_10 | AC | 134 ms
41,616 KB |
testcase_11 | AC | 135 ms
41,324 KB |
testcase_12 | AC | 136 ms
41,688 KB |
testcase_13 | AC | 134 ms
41,560 KB |
testcase_14 | AC | 132 ms
41,336 KB |
testcase_15 | AC | 134 ms
41,328 KB |
testcase_16 | AC | 135 ms
41,260 KB |
testcase_17 | AC | 139 ms
41,472 KB |
testcase_18 | AC | 136 ms
41,680 KB |
testcase_19 | AC | 136 ms
41,504 KB |
testcase_20 | AC | 140 ms
41,468 KB |
testcase_21 | AC | 145 ms
41,588 KB |
testcase_22 | WA | - |
testcase_23 | AC | 298 ms
41,200 KB |
testcase_24 | AC | 168 ms
41,200 KB |
testcase_25 | AC | 201 ms
41,420 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 134 ms
41,656 KB |
testcase_30 | TLE | - |
testcase_31 | -- | - |
ソースコード
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){ if(array[count]!=0){ if(sum<0){ return Math.max(Math.max(sum*array[count],(int)sum/array[count]), Math.max(sum+array[count],sum-array[count])); }else{ return Math.max(sum*array[count], Math.max(sum+array[count],sum-array[count])); } }else{ return Math.max(0, sum+array[count]); } }else{ if(array[count]!=0){ if(sum<0){ return Math.max(Math.max(dfs(count+1,sum*array[count],array),dfs(count+1,(int)sum/array[count],array)), Math.max(dfs(count+1,sum+array[count],array), dfs(count+1,sum-array[count],array))); }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))); } }else{ return Math.max(dfs(count+1,0,array), dfs(count+1,sum,array)); } } } }