結果

問題 No.4 おもりと天秤
ユーザー mosmos_21mosmos_21
提出日時 2017-06-17 12:51:39
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,253 bytes
コンパイル時間 2,242 ms
コンパイル使用メモリ 77,708 KB
実行使用メモリ 55,916 KB
最終ジャッジ日時 2024-10-01 09:31:35
合計ジャッジ時間 5,493 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
40,320 KB
testcase_01 AC 107 ms
40,596 KB
testcase_02 WA -
testcase_03 AC 108 ms
40,616 KB
testcase_04 AC 110 ms
41,152 KB
testcase_05 AC 147 ms
42,256 KB
testcase_06 WA -
testcase_07 AC 138 ms
41,888 KB
testcase_08 AC 115 ms
41,272 KB
testcase_09 AC 142 ms
42,200 KB
testcase_10 AC 131 ms
42,188 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 111 ms
41,288 KB
testcase_17 AC 110 ms
41,128 KB
testcase_18 WA -
testcase_19 AC 140 ms
41,580 KB
testcase_20 AC 135 ms
41,656 KB
testcase_21 AC 135 ms
42,080 KB
testcase_22 AC 153 ms
41,892 KB
権限があれば一括ダウンロードができます

ソースコード

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++) {
            for (int j = 0; j < dp[0].length; j++) {
                if(i == 0 || j == 0){
                    dp[i][j] = true;
                }else{
                    dp[i][j] = false;
                }
            }
        }

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