結果

問題 No.4 おもりと天秤
ユーザー mosmos_21mosmos_21
提出日時 2017-06-17 13:22:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 174 ms / 5,000 ms
コード長 1,105 bytes
コンパイル時間 1,999 ms
コンパイル使用メモリ 77,708 KB
実行使用メモリ 42,308 KB
最終ジャッジ日時 2024-06-26 10:19:50
合計ジャッジ時間 6,080 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,136 KB
testcase_01 AC 124 ms
41,084 KB
testcase_02 AC 127 ms
41,176 KB
testcase_03 AC 129 ms
41,316 KB
testcase_04 AC 114 ms
39,948 KB
testcase_05 AC 160 ms
41,480 KB
testcase_06 AC 129 ms
41,200 KB
testcase_07 AC 173 ms
41,592 KB
testcase_08 AC 138 ms
41,208 KB
testcase_09 AC 174 ms
42,308 KB
testcase_10 AC 162 ms
41,924 KB
testcase_11 AC 115 ms
40,192 KB
testcase_12 AC 125 ms
41,720 KB
testcase_13 AC 124 ms
41,440 KB
testcase_14 AC 124 ms
41,296 KB
testcase_15 AC 127 ms
41,444 KB
testcase_16 AC 120 ms
40,916 KB
testcase_17 AC 129 ms
41,200 KB
testcase_18 AC 162 ms
41,652 KB
testcase_19 AC 161 ms
42,008 KB
testcase_20 AC 164 ms
41,924 KB
testcase_21 AC 160 ms
41,620 KB
testcase_22 AC 170 ms
41,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
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[N + 1][h + 1];
        for (int i = 0; i < dp.length; i++) {
            Arrays.fill(dp[i], false);
        }
        dp[0][0] = true;
        for (int i = 1; i < N + 1; i++) {
            for (int j = 1; j < h + 1; j++) {
                if(0 <= j - w[i - 1] && dp[i - 1][j - w[i - 1]]){
                    dp[i][j] = true;
                }else{
                    dp[i][j] = dp[i - 1][j];
                }
            }
        }
        if (dp[N][h]) {
            System.out.println("possible");
        } else {
            System.out.println("impossible");
        }
    }
}
0