結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,760 KB
testcase_01 AC 52 ms
36,828 KB
testcase_02 AC 52 ms
36,964 KB
testcase_03 AC 52 ms
36,472 KB
testcase_04 AC 52 ms
36,336 KB
testcase_05 AC 58 ms
37,100 KB
testcase_06 AC 52 ms
37,068 KB
testcase_07 AC 59 ms
36,660 KB
testcase_08 AC 53 ms
36,732 KB
testcase_09 AC 60 ms
37,344 KB
testcase_10 AC 60 ms
36,984 KB
testcase_11 WA -
testcase_12 AC 53 ms
37,024 KB
testcase_13 AC 53 ms
36,832 KB
testcase_14 AC 51 ms
36,960 KB
testcase_15 AC 52 ms
36,488 KB
testcase_16 AC 50 ms
36,852 KB
testcase_17 AC 52 ms
36,776 KB
testcase_18 AC 64 ms
37,616 KB
testcase_19 AC 57 ms
36,904 KB
testcase_20 AC 56 ms
36,736 KB
testcase_21 AC 57 ms
36,644 KB
testcase_22 AC 56 ms
36,828 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];
        int sum = 0;
        for (int i = 0; i < strW.length; i++) {
            W[i] = Integer.parseInt(strW[i]);
            sum += W[i];
        }

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

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

        Arrays.fill(d, Integer.MAX_VALUE);
        d[0] = -1;

        for (int i = 0; i < W.length; i++) {
            int tmpW = W[i];
            for (int j = 0; j < d.length - tmpW; j++) {
                if (d[j] != Integer.MAX_VALUE) {
                    if (sum / 2 == j + tmpW) {
                        System.out.println("possible");
                        return;
                    } else if (j + tmpW < d.length
                            && d[j] != i
                            && d[j + tmpW] == Integer.MAX_VALUE) {
                        d[j + tmpW] = i;
                    }
                }
            }
        }

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