結果

問題 No.505 カードの数式2
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2017-04-21 23:01:19
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 686 bytes
コンパイル時間 2,208 ms
コンパイル使用メモリ 73,884 KB
実行使用メモリ 41,444 KB
最終ジャッジ日時 2024-07-20 06:34:29
合計ジャッジ時間 8,318 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,180 KB
testcase_01 AC 133 ms
40,984 KB
testcase_02 AC 182 ms
41,208 KB
testcase_03 AC 134 ms
41,136 KB
testcase_04 AC 134 ms
41,260 KB
testcase_05 AC 135 ms
40,996 KB
testcase_06 AC 120 ms
39,988 KB
testcase_07 AC 131 ms
41,280 KB
testcase_08 AC 130 ms
41,388 KB
testcase_09 AC 136 ms
41,044 KB
testcase_10 AC 131 ms
41,196 KB
testcase_11 WA -
testcase_12 AC 121 ms
40,248 KB
testcase_13 AC 133 ms
41,148 KB
testcase_14 WA -
testcase_15 AC 131 ms
40,868 KB
testcase_16 AC 129 ms
41,340 KB
testcase_17 WA -
testcase_18 AC 132 ms
40,856 KB
testcase_19 AC 135 ms
41,208 KB
testcase_20 AC 135 ms
41,036 KB
testcase_21 AC 184 ms
41,276 KB
testcase_22 WA -
testcase_23 AC 187 ms
41,088 KB
testcase_24 AC 182 ms
41,048 KB
testcase_25 AC 183 ms
41,216 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 189 ms
41,120 KB
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int [] A = new int [N];
        for(int i=0; i<N; i++){
            A[i] = sc.nextInt();
        }
        solve(N,A);
    }
    static int ans;
    static void solve(int N, int[]A){
        ans = 0;
        funtion(N,A,1,A[0]);
        System.out.println(ans);
    }
    static void funtion(int N, int[]A, int k, int X){
        if(N==k){
            ans=Math.max(ans,X);
        }else{
            funtion(N,A,k+1,X+A[k]);
            funtion(N,A,k+1,X-A[k]);
            funtion(N,A,k+1,X*A[k]);
        }
    }
}
0