結果

問題 No.4 おもりと天秤
ユーザー DAZYDAZY
提出日時 2017-05-23 01:57:13
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,041 bytes
コンパイル時間 3,644 ms
コンパイル使用メモリ 77,336 KB
実行使用メモリ 60,840 KB
最終ジャッジ日時 2024-09-19 10:36:53
合計ジャッジ時間 11,858 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
54,132 KB
testcase_01 AC 108 ms
52,996 KB
testcase_02 AC 110 ms
53,012 KB
testcase_03 AC 124 ms
53,892 KB
testcase_04 AC 106 ms
52,864 KB
testcase_05 AC 122 ms
53,848 KB
testcase_06 AC 117 ms
54,004 KB
testcase_07 AC 124 ms
53,744 KB
testcase_08 AC 125 ms
54,228 KB
testcase_09 AC 123 ms
53,900 KB
testcase_10 AC 125 ms
53,908 KB
testcase_11 AC 120 ms
53,992 KB
testcase_12 AC 119 ms
54,132 KB
testcase_13 AC 126 ms
53,788 KB
testcase_14 AC 123 ms
53,952 KB
testcase_15 AC 120 ms
53,704 KB
testcase_16 AC 122 ms
54,032 KB
testcase_17 AC 118 ms
53,688 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) {
        int tmp;
        i--;
        for (; i >= 0; i--) {
            if (b) break;
            tmp = half - W[i];
            if (tmp >= 0) {
                if (tmp == 0) b = true;
                else b = check(tmp, W, i, 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