結果
問題 | No.505 カードの数式2 |
ユーザー | akitsu818 |
提出日時 | 2017-04-30 18:42:40 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,225 bytes |
コンパイル時間 | 2,473 ms |
コンパイル使用メモリ | 77,664 KB |
実行使用メモリ | 47,064 KB |
最終ジャッジ日時 | 2024-09-13 23:54:59 |
合計ジャッジ時間 | 14,539 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 130 ms
46,804 KB |
testcase_01 | AC | 118 ms
39,852 KB |
testcase_02 | AC | 1,175 ms
42,476 KB |
testcase_03 | AC | 117 ms
39,736 KB |
testcase_04 | AC | 130 ms
41,384 KB |
testcase_05 | AC | 119 ms
39,944 KB |
testcase_06 | AC | 129 ms
41,116 KB |
testcase_07 | AC | 130 ms
41,064 KB |
testcase_08 | AC | 133 ms
41,016 KB |
testcase_09 | AC | 131 ms
41,436 KB |
testcase_10 | AC | 130 ms
41,096 KB |
testcase_11 | AC | 133 ms
41,148 KB |
testcase_12 | AC | 131 ms
41,416 KB |
testcase_13 | AC | 128 ms
41,156 KB |
testcase_14 | AC | 127 ms
41,132 KB |
testcase_15 | AC | 132 ms
41,048 KB |
testcase_16 | AC | 130 ms
41,120 KB |
testcase_17 | AC | 129 ms
41,292 KB |
testcase_18 | AC | 131 ms
41,396 KB |
testcase_19 | AC | 133 ms
41,420 KB |
testcase_20 | AC | 134 ms
41,344 KB |
testcase_21 | AC | 147 ms
41,124 KB |
testcase_22 | AC | 546 ms
41,104 KB |
testcase_23 | AC | 386 ms
41,204 KB |
testcase_24 | AC | 183 ms
41,288 KB |
testcase_25 | AC | 223 ms
40,596 KB |
testcase_26 | AC | 1,165 ms
41,152 KB |
testcase_27 | AC | 398 ms
41,128 KB |
testcase_28 | AC | 1,007 ms
41,496 KB |
testcase_29 | AC | 131 ms
41,392 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(); long list[] = new long[target]; for(int i=0;i<target;i++){ list[i] = cin.nextLong(); } cin.close(); System.out.println(dfs(1,list[0],list)); } static long dfs(int count,long sum,long array[]){ if(count==target-1){ if(array[count]!=0L){ if(sum<0L){ return Math.max(Math.max(sum*array[count],(long)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]!=0L){ if(sum<0L){ return Math.max(Math.max(dfs(count+1,sum*array[count],array),dfs(count+1,(long)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)); } } } }