結果

問題 No.4 おもりと天秤
ユーザー Flere0114Flere0114
提出日時 2016-02-17 16:33:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 149 ms / 5,000 ms
コード長 909 bytes
コンパイル時間 3,613 ms
コンパイル使用メモリ 76,092 KB
実行使用メモリ 41,620 KB
最終ジャッジ日時 2024-06-26 09:26:30
合計ジャッジ時間 7,602 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,100 KB
testcase_01 AC 124 ms
41,224 KB
testcase_02 AC 113 ms
39,928 KB
testcase_03 AC 130 ms
41,084 KB
testcase_04 AC 127 ms
41,052 KB
testcase_05 AC 149 ms
41,116 KB
testcase_06 AC 126 ms
41,076 KB
testcase_07 AC 147 ms
41,260 KB
testcase_08 AC 137 ms
41,308 KB
testcase_09 AC 146 ms
41,620 KB
testcase_10 AC 144 ms
41,468 KB
testcase_11 AC 129 ms
41,304 KB
testcase_12 AC 123 ms
41,060 KB
testcase_13 AC 111 ms
39,936 KB
testcase_14 AC 126 ms
41,160 KB
testcase_15 AC 125 ms
40,860 KB
testcase_16 AC 130 ms
41,180 KB
testcase_17 AC 125 ms
41,120 KB
testcase_18 AC 145 ms
41,176 KB
testcase_19 AC 143 ms
41,248 KB
testcase_20 AC 146 ms
41,452 KB
testcase_21 AC 148 ms
41,180 KB
testcase_22 AC 149 ms
41,264 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+1];
        dp[0] = true;

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