結果

問題 No.4 おもりと天秤
ユーザー DAZYDAZY
提出日時 2017-05-24 15:10:37
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 686 bytes
コンパイル時間 2,844 ms
コンパイル使用メモリ 74,936 KB
実行使用メモリ 54,508 KB
最終ジャッジ日時 2024-09-19 16:08:02
合計ジャッジ時間 6,463 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
54,072 KB
testcase_01 AC 117 ms
54,036 KB
testcase_02 AC 120 ms
54,044 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 118 ms
53,796 KB
testcase_07 WA -
testcase_08 AC 129 ms
53,824 KB
testcase_09 AC 131 ms
54,152 KB
testcase_10 WA -
testcase_11 AC 117 ms
53,988 KB
testcase_12 AC 104 ms
52,824 KB
testcase_13 AC 106 ms
52,624 KB
testcase_14 AC 116 ms
54,104 KB
testcase_15 AC 115 ms
54,004 KB
testcase_16 WA -
testcase_17 AC 122 ms
54,176 KB
testcase_18 AC 126 ms
54,200 KB
testcase_19 AC 128 ms
53,964 KB
testcase_20 AC 131 ms
53,992 KB
testcase_21 AC 128 ms
54,012 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No4 {
    public static void main (String[] args) {
        Scanner scan = new Scanner(System.in);
        int N = scan.nextInt();
        int t, sum = 0;
        //インデックスのおもさを作り出せるかどうか
        boolean[] w = new boolean[10001];
        w[0] = true;
        for (int i = 0; i < N; i++) {
            t = scan.nextInt();
            sum += t;
            for (int j = 10000 - t; j >= 0; j--) w[j+t] = w[j];
        }
        //二等分できないとき、または半分のおもさにできない場合 impossible
        System.out.println((sum & 1)==1 || !w[sum/2] ? "impossible" : "possible");
    }
}
0