結果

問題 No.4 おもりと天秤
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-05-07 23:13:18
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,352 bytes
コンパイル時間 2,067 ms
コンパイル使用メモリ 75,752 KB
実行使用メモリ 38,096 KB
最終ジャッジ日時 2024-09-14 14:53:34
合計ジャッジ時間 4,158 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
37,692 KB
testcase_01 AC 51 ms
36,652 KB
testcase_02 AC 51 ms
37,736 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 55 ms
37,708 KB
testcase_07 WA -
testcase_08 AC 54 ms
36,976 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 52 ms
37,960 KB
testcase_12 AC 51 ms
38,052 KB
testcase_13 AC 53 ms
37,944 KB
testcase_14 AC 53 ms
37,616 KB
testcase_15 AC 52 ms
37,908 KB
testcase_16 WA -
testcase_17 AC 54 ms
37,552 KB
testcase_18 AC 54 ms
37,868 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import static java.lang.System.in;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader reader = new BufferedReader(new InputStreamReader(in));
        int N = Integer.parseInt(reader.readLine());
        String[] inputs = reader.readLine().split(" ");
        int[] weights = new int[N];
        int sumOfWeights = 0;

        for (int i = 0; i < N; i++) {
            int weight = Integer.parseInt(inputs[i]);
            weights[i] = weight;
            sumOfWeights += weight;
        }

        if (sumOfWeights % 2 != 0) {
            System.out.println("impossible");
        } else {

            int requiredWeight = sumOfWeights / 2;
            boolean[][] dp = new boolean[101][10001];
            dp[0][0] = true;

            for (int i = 0; i < N; i++) {
                for (int j = 0; j <= 10; j++) {
                    if (dp[i][j]) {
                        dp[i + 1][j + weights[i]] = true;
                        dp[i + 1][j] = true;
                    }
                }
            }
            if (dp[N][requiredWeight]) {
                System.out.println("possible");
            } else {
                System.out.println("impossible");
            }
        }
    }
}
0