結果

問題 No.4 おもりと天秤
ユーザー DAZYDAZY
提出日時 2017-05-23 01:24:32
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,085 bytes
コンパイル時間 4,078 ms
コンパイル使用メモリ 77,584 KB
実行使用メモリ 62,056 KB
最終ジャッジ日時 2023-10-19 14:28:05
合計ジャッジ時間 13,736 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
57,312 KB
testcase_01 AC 145 ms
57,648 KB
testcase_02 AC 139 ms
57,476 KB
testcase_03 AC 142 ms
57,688 KB
testcase_04 AC 137 ms
57,560 KB
testcase_05 AC 142 ms
57,640 KB
testcase_06 AC 131 ms
57,472 KB
testcase_07 AC 144 ms
57,300 KB
testcase_08 AC 153 ms
55,592 KB
testcase_09 AC 147 ms
57,772 KB
testcase_10 AC 144 ms
57,712 KB
testcase_11 AC 136 ms
57,296 KB
testcase_12 AC 132 ms
57,472 KB
testcase_13 AC 134 ms
57,248 KB
testcase_14 AC 139 ms
57,312 KB
testcase_15 AC 136 ms
57,744 KB
testcase_16 AC 144 ms
57,704 KB
testcase_17 AC 136 ms
57,436 KB
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No4 {
    public static boolean check (int half, int[] W, int i, boolean b) {
        if (i > 0) {
            i--;
            for (int j = i; j >= 0; j--) {
                if (b) break;
                if (half >= W[j]) {
                    if (half - W[j] == 0) b = true;
                    else b = check(half - W[j], W, j, b);
                }
            }
        }
        return b;
    }
    public static void main (String[] args) {
        Scanner scan = new Scanner(System.in);
        int N = scan.nextInt();
        int W[] = new int[N];
        int sum = 0; int half;
        boolean b = false;
        for (int i = 0; i < N; i++) {
            W[i] = scan.nextInt();
            sum += W[i];
        }
        //合計が奇数なら2等分することはできない
        if (sum % 2 != 0) {
            System.out.println("impossible");
            System.exit(0);
        }
        half = sum/2;
        if (check(half, W, N, b)) System.out.println("possible");
        else System.out.println("impossible");
    }
}
0