結果

問題 No.4 おもりと天秤
ユーザー mosmos_21mosmos_21
提出日時 2017-06-17 11:28:58
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 925 bytes
コンパイル時間 2,119 ms
コンパイル使用メモリ 75,548 KB
実行使用メモリ 54,316 KB
最終ジャッジ日時 2024-10-01 09:29:31
合計ジャッジ時間 5,714 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 122 ms
53,944 KB
testcase_02 AC 121 ms
53,732 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 142 ms
53,980 KB
testcase_06 AC 124 ms
53,664 KB
testcase_07 AC 139 ms
53,872 KB
testcase_08 AC 129 ms
54,076 KB
testcase_09 AC 138 ms
54,056 KB
testcase_10 AC 139 ms
53,860 KB
testcase_11 AC 131 ms
53,848 KB
testcase_12 WA -
testcase_13 AC 129 ms
53,848 KB
testcase_14 AC 122 ms
53,940 KB
testcase_15 AC 123 ms
54,248 KB
testcase_16 AC 121 ms
53,604 KB
testcase_17 AC 121 ms
54,244 KB
testcase_18 WA -
testcase_19 AC 140 ms
54,084 KB
testcase_20 AC 144 ms
54,216 KB
testcase_21 AC 141 ms
54,180 KB
testcase_22 AC 141 ms
53,956 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 + 1];
        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;
        }

        boolean[] dp = new boolean[sum / 2];
        Arrays.fill(dp, false);
        dp[0] = true;
        for(int i = 0; i < dp.length; i++){
            for(int j = 0; j < w.length; j++){
                if(dp[i] && i + w[j] < dp.length){
                    dp[i + w[j]] = true;
                }
            }
        }
        if(dp[N]){
            System.out.println("possible");
        }else{
            System.out.println("impossible");
        }
    }
}
0