結果

問題 No.4 おもりと天秤
ユーザー mosmos_21mosmos_21
提出日時 2017-06-17 11:30:47
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 931 bytes
コンパイル時間 2,303 ms
コンパイル使用メモリ 74,364 KB
実行使用メモリ 54,380 KB
最終ジャッジ日時 2024-10-01 09:29:49
合計ジャッジ時間 6,578 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
53,756 KB
testcase_01 AC 132 ms
53,796 KB
testcase_02 AC 133 ms
53,884 KB
testcase_03 AC 132 ms
53,908 KB
testcase_04 AC 132 ms
53,920 KB
testcase_05 AC 154 ms
54,260 KB
testcase_06 AC 134 ms
54,128 KB
testcase_07 AC 155 ms
54,224 KB
testcase_08 AC 143 ms
54,044 KB
testcase_09 AC 150 ms
54,380 KB
testcase_10 AC 154 ms
53,884 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 133 ms
54,060 KB
testcase_14 WA -
testcase_15 AC 135 ms
53,572 KB
testcase_16 AC 134 ms
54,052 KB
testcase_17 AC 135 ms
53,880 KB
testcase_18 AC 155 ms
54,288 KB
testcase_19 AC 155 ms
53,776 KB
testcase_20 AC 155 ms
54,176 KB
testcase_21 AC 156 ms
53,708 KB
testcase_22 AC 159 ms
53,968 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;
        }

        boolean[] dp = new boolean[sum / 2 + 1];
        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[sum / 2]){
            System.out.println("possible");
        }else{
            System.out.println("impossible");
        }
    }
}
0