結果

問題 No.4 おもりと天秤
ユーザー mastersatoshimastersatoshi
提出日時 2015-08-01 11:42:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 67 ms / 5,000 ms
コード長 1,281 bytes
コンパイル時間 2,321 ms
コンパイル使用メモリ 78,340 KB
実行使用メモリ 50,360 KB
最終ジャッジ日時 2024-06-26 09:16:29
合計ジャッジ時間 4,455 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
50,076 KB
testcase_01 AC 55 ms
50,160 KB
testcase_02 AC 55 ms
50,080 KB
testcase_03 AC 54 ms
49,828 KB
testcase_04 AC 55 ms
50,124 KB
testcase_05 AC 62 ms
50,156 KB
testcase_06 AC 56 ms
49,720 KB
testcase_07 AC 60 ms
50,072 KB
testcase_08 AC 55 ms
50,128 KB
testcase_09 AC 62 ms
50,256 KB
testcase_10 AC 61 ms
50,220 KB
testcase_11 AC 55 ms
50,128 KB
testcase_12 AC 55 ms
50,272 KB
testcase_13 AC 54 ms
50,192 KB
testcase_14 AC 55 ms
50,172 KB
testcase_15 AC 55 ms
50,204 KB
testcase_16 AC 56 ms
50,264 KB
testcase_17 AC 55 ms
49,896 KB
testcase_18 AC 67 ms
50,360 KB
testcase_19 AC 61 ms
49,836 KB
testcase_20 AC 60 ms
50,232 KB
testcase_21 AC 60 ms
49,944 KB
testcase_22 AC 60 ms
50,232 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 && d[j] != i) {
                    if (sum / 2 == j + tmpW) {
                        System.out.println("possible");
                        return;
                    } else if (j + tmpW < d.length && d[j + tmpW] == Integer.MAX_VALUE) {
                        d[j + tmpW] = i;
                    }
                }
            }
        }

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