結果

問題 No.505 カードの数式2
ユーザー atkrym1217atkrym1217
提出日時 2017-04-26 12:49:35
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 800 bytes
コンパイル時間 2,172 ms
コンパイル使用メモリ 74,436 KB
実行使用メモリ 54,420 KB
最終ジャッジ日時 2024-09-13 14:04:09
合計ジャッジ時間 8,949 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,080 KB
testcase_01 AC 134 ms
54,356 KB
testcase_02 AC 249 ms
54,244 KB
testcase_03 AC 133 ms
54,160 KB
testcase_04 AC 131 ms
54,024 KB
testcase_05 AC 132 ms
54,032 KB
testcase_06 AC 130 ms
53,988 KB
testcase_07 AC 118 ms
52,908 KB
testcase_08 AC 132 ms
54,128 KB
testcase_09 AC 133 ms
54,420 KB
testcase_10 AC 133 ms
54,144 KB
testcase_11 WA -
testcase_12 AC 134 ms
54,104 KB
testcase_13 AC 134 ms
53,872 KB
testcase_14 AC 132 ms
54,120 KB
testcase_15 AC 132 ms
53,876 KB
testcase_16 AC 132 ms
54,008 KB
testcase_17 WA -
testcase_18 AC 137 ms
53,832 KB
testcase_19 AC 133 ms
53,900 KB
testcase_20 AC 149 ms
54,060 KB
testcase_21 AC 254 ms
54,196 KB
testcase_22 AC 251 ms
54,120 KB
testcase_23 AC 252 ms
54,200 KB
testcase_24 AC 267 ms
54,272 KB
testcase_25 AC 252 ms
54,064 KB
testcase_26 AC 252 ms
54,076 KB
testcase_27 AC 251 ms
54,112 KB
testcase_28 AC 257 ms
54,092 KB
testcase_29 WA -
testcase_30 AC 245 ms
54,136 KB
testcase_31 AC 249 ms
54,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static Scanner sc = new Scanner(System.in);
    public static int n;
    public static int[] a;
    public static int[] b;
    public static long ret = Long.MIN_VALUE;
    public static void main(String[] args) throws Exception {
        n = sc.nextInt();
        a = new int[n];
        b = new int[n];
        for (int i = 0;i < n;i++) a[i] = sc.nextInt();
        calc(0, a[0]);
        System.out.println(ret);
    }
    
    public static void calc(int c, long val) {
        if (c==n-1) {
            ret = Math.max(ret,val);
            return;
        }
        for (int i = 0;i < 3;i++) {
            if (i==0) calc(c+1,val+a[c+1]);
            if (i==1) calc(c+1,val-a[c+1]);
            if (i==2) calc(c+1,val*a[c+1]);
        }
    }
}
0