結果

問題 No.4 おもりと天秤
ユーザー Flere0114Flere0114
提出日時 2016-02-17 16:11:45
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 905 bytes
コンパイル時間 3,642 ms
コンパイル使用メモリ 75,572 KB
実行使用メモリ 54,444 KB
最終ジャッジ日時 2024-09-22 07:29:39
合計ジャッジ時間 7,038 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
54,008 KB
testcase_01 AC 122 ms
53,872 KB
testcase_02 WA -
testcase_03 AC 122 ms
54,084 KB
testcase_04 AC 124 ms
54,168 KB
testcase_05 AC 136 ms
54,268 KB
testcase_06 WA -
testcase_07 AC 136 ms
54,036 KB
testcase_08 AC 129 ms
54,336 KB
testcase_09 WA -
testcase_10 AC 137 ms
54,232 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 124 ms
54,188 KB
testcase_14 AC 123 ms
53,976 KB
testcase_15 AC 122 ms
53,908 KB
testcase_16 AC 123 ms
54,128 KB
testcase_17 AC 109 ms
52,988 KB
testcase_18 WA -
testcase_19 AC 137 ms
54,268 KB
testcase_20 AC 137 ms
54,036 KB
testcase_21 AC 138 ms
54,272 KB
testcase_22 AC 136 ms
53,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No4 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = Integer.parseInt(sc.next());
        int[] w = new int[n];
        int sum = 0;
        for (int i = 0; i < n; i++) {
            w[i] = Integer.parseInt(sc.next());
            sum += w[i];
        }

        if(sum % 2 == 1){
            System.out.println("impossible");
            return;
        }

        int half = sum / 2;
        boolean[] dp = new boolean[half];
        dp[0] = true;

        for (int i = 0; i < n; i++) {
            for (int j = 0; j < half; j++) {
                if(dp[j] && j+w[i] < half){
                    dp[j+w[i]] = true;
                }
            }
        }
        if(dp[half-1]){
            System.out.println("possible");
        }else{
            System.out.println("impossible");
        }
    }
}
0