結果

問題 No.4 おもりと天秤
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-05-07 23:14:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 80 ms / 5,000 ms
コード長 1,353 bytes
コンパイル時間 1,991 ms
コンパイル使用メモリ 77,440 KB
実行使用メモリ 39,108 KB
最終ジャッジ日時 2024-06-26 10:16:02
合計ジャッジ時間 4,265 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,888 KB
testcase_01 AC 52 ms
36,572 KB
testcase_02 AC 54 ms
38,128 KB
testcase_03 AC 53 ms
38,088 KB
testcase_04 AC 54 ms
37,780 KB
testcase_05 AC 80 ms
38,944 KB
testcase_06 AC 54 ms
38,068 KB
testcase_07 AC 69 ms
39,052 KB
testcase_08 AC 51 ms
37,260 KB
testcase_09 AC 68 ms
38,712 KB
testcase_10 AC 69 ms
38,796 KB
testcase_11 AC 51 ms
38,064 KB
testcase_12 AC 51 ms
37,520 KB
testcase_13 AC 51 ms
37,624 KB
testcase_14 AC 53 ms
37,980 KB
testcase_15 AC 55 ms
37,604 KB
testcase_16 AC 56 ms
37,792 KB
testcase_17 AC 55 ms
38,000 KB
testcase_18 AC 71 ms
38,936 KB
testcase_19 AC 74 ms
38,776 KB
testcase_20 AC 71 ms
39,076 KB
testcase_21 AC 73 ms
39,108 KB
testcase_22 AC 72 ms
38,980 KB
権限があれば一括ダウンロードができます

ソースコード

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 <= 10000; 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