結果

問題 No.505 カードの数式2
ユーザー atkrym1217atkrym1217
提出日時 2017-04-26 12:54:51
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 872 bytes
コンパイル時間 2,252 ms
コンパイル使用メモリ 77,080 KB
実行使用メモリ 62,100 KB
最終ジャッジ日時 2024-09-13 14:05:00
合計ジャッジ時間 16,186 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
60,916 KB
testcase_01 AC 133 ms
54,096 KB
testcase_02 AC 1,773 ms
54,728 KB
testcase_03 AC 134 ms
54,112 KB
testcase_04 AC 135 ms
54,188 KB
testcase_05 AC 133 ms
54,028 KB
testcase_06 AC 130 ms
53,984 KB
testcase_07 AC 132 ms
54,112 KB
testcase_08 AC 131 ms
53,888 KB
testcase_09 RE -
testcase_10 AC 134 ms
54,396 KB
testcase_11 AC 135 ms
53,904 KB
testcase_12 AC 135 ms
54,056 KB
testcase_13 RE -
testcase_14 AC 135 ms
53,772 KB
testcase_15 AC 133 ms
53,968 KB
testcase_16 RE -
testcase_17 AC 135 ms
54,028 KB
testcase_18 AC 124 ms
53,052 KB
testcase_19 RE -
testcase_20 AC 154 ms
54,212 KB
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 TLE -
testcase_27 AC 704 ms
54,904 KB
testcase_28 AC 1,898 ms
54,584 KB
testcase_29 AC 132 ms
54,088 KB
testcase_30 TLE -
testcase_31 -- -
権限があれば一括ダウンロードができます

ソースコード

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;
        }
        int t = val>=0?3:4;
        for (int i = 0;i < t;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]);
            if (i==3) calc(c+1,val/a[c+1]);
        }
    }
}
0