結果

問題 No.4 おもりと天秤
ユーザー ぴろずぴろず
提出日時 2014-12-21 01:04:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 154 ms / 5,000 ms
コード長 654 bytes
コンパイル時間 2,320 ms
コンパイル使用メモリ 76,856 KB
実行使用メモリ 54,316 KB
最終ジャッジ日時 2024-06-26 09:04:44
合計ジャッジ時間 6,605 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
54,316 KB
testcase_01 AC 147 ms
53,944 KB
testcase_02 AC 138 ms
54,132 KB
testcase_03 AC 141 ms
53,660 KB
testcase_04 AC 138 ms
53,900 KB
testcase_05 AC 151 ms
53,652 KB
testcase_06 AC 132 ms
53,968 KB
testcase_07 AC 153 ms
53,944 KB
testcase_08 AC 140 ms
53,872 KB
testcase_09 AC 154 ms
54,000 KB
testcase_10 AC 151 ms
53,864 KB
testcase_11 AC 132 ms
53,952 KB
testcase_12 AC 131 ms
53,924 KB
testcase_13 AC 135 ms
53,648 KB
testcase_14 AC 132 ms
54,024 KB
testcase_15 AC 130 ms
53,652 KB
testcase_16 AC 130 ms
53,856 KB
testcase_17 AC 130 ms
54,000 KB
testcase_18 AC 153 ms
54,024 KB
testcase_19 AC 151 ms
54,148 KB
testcase_20 AC 154 ms
54,068 KB
testcase_21 AC 151 ms
54,148 KB
testcase_22 AC 149 ms
54,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no004;

import java.util.Scanner;

public class Main {

	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 == 1) {
			System.out.println("impossible");
			return;
		}
		sum /= 2;
		boolean[][] dp = new boolean[n+1][sum+1];
		dp[0][0] = true;
		for(int i=1;i<=n;i++) {
			for(int j=0;j<=sum;j++) {
				dp[i][j] = dp[i-1][j];
				if (j - w[i-1] >= 0) {
					dp[i][j] |= dp[i-1][j-w[i-1]];
				}
			}
		}
		System.out.println(dp[n][sum] ? "possible" : "impossible");
	}

}
0