結果

問題 No.4 おもりと天秤
ユーザー DAZYDAZY
提出日時 2017-05-24 15:25:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 147 ms / 5,000 ms
コード長 727 bytes
コンパイル時間 3,328 ms
コンパイル使用メモリ 74,608 KB
実行使用メモリ 41,792 KB
最終ジャッジ日時 2024-06-26 10:18:44
合計ジャッジ時間 7,237 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
40,496 KB
testcase_01 AC 126 ms
41,572 KB
testcase_02 AC 134 ms
41,660 KB
testcase_03 AC 130 ms
41,444 KB
testcase_04 AC 128 ms
41,224 KB
testcase_05 AC 143 ms
41,792 KB
testcase_06 AC 127 ms
41,356 KB
testcase_07 AC 147 ms
41,668 KB
testcase_08 AC 143 ms
41,664 KB
testcase_09 AC 146 ms
41,276 KB
testcase_10 AC 146 ms
41,616 KB
testcase_11 AC 130 ms
41,140 KB
testcase_12 AC 123 ms
41,604 KB
testcase_13 AC 126 ms
41,368 KB
testcase_14 AC 127 ms
41,408 KB
testcase_15 AC 113 ms
40,344 KB
testcase_16 AC 130 ms
41,512 KB
testcase_17 AC 128 ms
41,520 KB
testcase_18 AC 142 ms
41,448 KB
testcase_19 AC 144 ms
41,580 KB
testcase_20 AC 142 ms
41,772 KB
testcase_21 AC 140 ms
41,264 KB
testcase_22 AC 142 ms
41,784 KB
権限があれば一括ダウンロードができます

ソースコード

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;
        //インデックスのおもさを作り出せるかどうか
        int[] w = new int[10001];
        w[0] = 1;
        for (int i = 1; i < 10001; i++) w[i] = 0;
        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]==0 ? "impossible" : "possible");
    }
}
0