結果

問題 No.4 おもりと天秤
ユーザー mastersatoshimastersatoshi
提出日時 2015-08-01 11:15:48
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,261 bytes
コンパイル時間 2,294 ms
コンパイル使用メモリ 78,112 KB
実行使用メモリ 52,336 KB
最終ジャッジ日時 2024-07-18 00:21:50
合計ジャッジ時間 4,336 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
50,036 KB
testcase_01 AC 54 ms
49,924 KB
testcase_02 AC 56 ms
50,316 KB
testcase_03 AC 55 ms
50,004 KB
testcase_04 AC 55 ms
50,424 KB
testcase_05 AC 59 ms
50,268 KB
testcase_06 AC 55 ms
50,004 KB
testcase_07 AC 59 ms
49,920 KB
testcase_08 AC 55 ms
50,280 KB
testcase_09 WA -
testcase_10 AC 60 ms
50,088 KB
testcase_11 WA -
testcase_12 AC 57 ms
50,316 KB
testcase_13 AC 54 ms
50,340 KB
testcase_14 AC 57 ms
49,948 KB
testcase_15 AC 55 ms
50,048 KB
testcase_16 AC 54 ms
50,336 KB
testcase_17 AC 56 ms
50,056 KB
testcase_18 AC 67 ms
50,700 KB
testcase_19 AC 62 ms
52,336 KB
testcase_20 AC 59 ms
50,264 KB
testcase_21 AC 61 ms
50,384 KB
testcase_22 AC 58 ms
50,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {

    public static void main(String[] args) throws Exception {

        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

        int N = Integer.parseInt(br.readLine());

        String[] strW = br.readLine().split(" ");

        int[] W = new int[strW.length + 1];
        int sum = 0;
        for (int i = 0; i < strW.length; i++) {
            W[i + 1] = Integer.parseInt(strW[i]);
            sum += W[i + 1];
        }

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

        int[] d = new int[sum / 2 + 1];

        Arrays.fill(d, Integer.MAX_VALUE);
        d[0] = 0;
        for (int i = 1; i < W.length; i++) {
            int tmpW = W[i];
            for (int j = 0; j < d.length - tmpW; j++) {

                if (d[j] != Integer.MAX_VALUE) {
                    if (d.length - 1 == j + tmpW) {
                        System.out.println("possible");
                        return;
                    } else if (j + tmpW < d.length && d[j] != i) {
                        d[j + tmpW] = i;
                    }
                }
            }
        }

        System.out.println("impossible");
    }
}
0