結果

問題 No.4 おもりと天秤
ユーザー mosmos_21mosmos_21
提出日時 2017-06-17 12:37:06
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,151 bytes
コンパイル時間 2,050 ms
コンパイル使用メモリ 76,624 KB
実行使用メモリ 56,076 KB
最終ジャッジ日時 2024-10-01 09:31:09
合計ジャッジ時間 6,482 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 120 ms
53,912 KB
testcase_02 AC 127 ms
53,996 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 135 ms
54,056 KB
testcase_07 WA -
testcase_08 AC 132 ms
53,688 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 133 ms
54,144 KB
testcase_12 AC 123 ms
53,944 KB
testcase_13 AC 124 ms
53,916 KB
testcase_14 AC 122 ms
53,872 KB
testcase_15 AC 128 ms
54,008 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 139 ms
54,048 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    static Scanner in = new Scanner(System.in);

    public static void main(String[] args) {
        int N = in.nextInt();
        int[] w = new int[N];
        int sum = 0;

        for (int i = 0; i < N; i++) {
            w[i] = in.nextInt();
            sum += w[i];
        }

        if (sum % 2 == 1) {
            System.out.println("impossible");
            return;
        }
        int h = sum / 2;
        boolean[][] dp = new boolean[h + 1][N + 1];
        for (int i = 0; i < dp.length; i++) {
            dp[i][0] = false;
        }
        for (int i = 0; i < dp[0].length; i++) {
            dp[0][i] = false;
        }

        for (int i = 0; i < dp.length; i++) {
            for (int j = 1; j < dp[0].length; j++) {
                if (dp[i][j - 1] && i + w[j - 1] <= h) {
                    dp[i + w[j - 1]][j] = true;
                } else {
                    dp[i][j] = dp[i][j - 1];
                }
            }
        }
        if (dp[h][N]) {
            System.out.println("possible");
        } else {
            System.out.println("impossible");
        }
    }
}
0