結果

問題 No.4 おもりと天秤
ユーザー rn4rurn4ru
提出日時 2016-04-12 23:54:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 160 ms / 5,000 ms
コード長 824 bytes
コンパイル時間 2,365 ms
コンパイル使用メモリ 77,780 KB
実行使用メモリ 41,980 KB
最終ジャッジ日時 2024-06-26 09:29:13
合計ジャッジ時間 6,582 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,060 KB
testcase_01 AC 129 ms
41,424 KB
testcase_02 AC 135 ms
41,060 KB
testcase_03 AC 133 ms
41,112 KB
testcase_04 AC 134 ms
41,220 KB
testcase_05 AC 153 ms
41,752 KB
testcase_06 AC 130 ms
41,248 KB
testcase_07 AC 149 ms
41,768 KB
testcase_08 AC 149 ms
41,188 KB
testcase_09 AC 152 ms
41,980 KB
testcase_10 AC 149 ms
41,628 KB
testcase_11 AC 132 ms
41,264 KB
testcase_12 AC 117 ms
40,144 KB
testcase_13 AC 133 ms
41,244 KB
testcase_14 AC 120 ms
40,200 KB
testcase_15 AC 132 ms
41,476 KB
testcase_16 AC 132 ms
41,112 KB
testcase_17 AC 135 ms
41,480 KB
testcase_18 AC 156 ms
41,624 KB
testcase_19 AC 153 ms
41,640 KB
testcase_20 AC 151 ms
41,488 KB
testcase_21 AC 158 ms
41,976 KB
testcase_22 AC 160 ms
41,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner scanner = new Scanner(System.in);
		int N = scanner.nextInt();
		int[] W = new int[N];
		for (int i = 0; i < N; i++) {
			W[i] = scanner.nextInt();
		}

		System.out.println(f(W));
	}

	private static String f(int[] w) {
		int sum = 0;
		for (int i = 0; i < w.length; i++) {
			sum += w[i];
		}
		if (sum % 2 == 1) {
			return "impossible";
		}
		int target = sum / 2;

		boolean[][] dp = new boolean[target + 1][w.length + 1];
		dp[0][0] = true;

		for (int i = 0; i < target; i++) {
			for (int j = 0; j < w.length; j++) {
				if (dp[i][j]) {
					if (i + w[j] <= target) {
						dp[i + w[j]][j + 1] = true;
					}
					dp[i][j + 1] = true;
				}
			}
		}

		return dp[target][w.length] ? "possible" : "impossible";
	}

}
0