結果

問題 No.4 おもりと天秤
ユーザー CrazyBBBCrazyBBB
提出日時 2016-03-05 20:35:16
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 723 bytes
コンパイル時間 2,261 ms
コンパイル使用メモリ 74,780 KB
実行使用メモリ 54,440 KB
最終ジャッジ日時 2024-09-24 14:28:28
合計ジャッジ時間 6,429 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
53,116 KB
testcase_01 AC 124 ms
53,872 KB
testcase_02 AC 126 ms
54,016 KB
testcase_03 AC 127 ms
54,240 KB
testcase_04 AC 128 ms
54,064 KB
testcase_05 AC 139 ms
54,248 KB
testcase_06 AC 126 ms
54,196 KB
testcase_07 AC 143 ms
54,292 KB
testcase_08 AC 134 ms
54,180 KB
testcase_09 AC 144 ms
54,196 KB
testcase_10 AC 143 ms
54,220 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 114 ms
52,932 KB
testcase_14 WA -
testcase_15 AC 127 ms
54,008 KB
testcase_16 AC 126 ms
54,060 KB
testcase_17 AC 126 ms
53,856 KB
testcase_18 AC 145 ms
54,392 KB
testcase_19 AC 144 ms
54,228 KB
testcase_20 AC 145 ms
54,380 KB
testcase_21 AC 142 ms
54,044 KB
testcase_22 AC 145 ms
54,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	static boolean[] can;

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int N = sc.nextInt();
        int[] W = new int[N];
        int sum = 0;
		for (int i=0; i<N; i++) {
			W[i] = sc.nextInt();
			sum += W[i];
		}
		if (sum%2 != 0) {
			System.out.println("impossible");
		} else {
			can = new boolean[sum/2+1];
			can[0] = true;

			for (int i=0; i<N; i++) {
				for (int j=0; j<=sum/2; j++) {
					if (can[j] && j+W[i]<=sum/2) {
						can[j+W[i]] = true;
					}
				}
			}

			if (can[sum/2]) {
				System.out.println("possible");
			} else {
				System.out.println("impossible");
			}
		}

        sc.close();
    }
}
0