結果

問題 No.4 おもりと天秤
ユーザー ぴろずぴろず
提出日時 2014-12-21 00:58:38
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 654 bytes
コンパイル時間 2,449 ms
コンパイル使用メモリ 77,636 KB
実行使用メモリ 55,704 KB
最終ジャッジ日時 2024-06-12 02:50:21
合計ジャッジ時間 6,556 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
53,828 KB
testcase_01 AC 137 ms
53,744 KB
testcase_02 WA -
testcase_03 AC 130 ms
53,788 KB
testcase_04 AC 138 ms
54,112 KB
testcase_05 AC 154 ms
53,816 KB
testcase_06 WA -
testcase_07 AC 157 ms
53,960 KB
testcase_08 AC 145 ms
54,152 KB
testcase_09 AC 159 ms
54,228 KB
testcase_10 AC 153 ms
53,840 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 124 ms
52,848 KB
testcase_17 AC 134 ms
54,252 KB
testcase_18 WA -
testcase_19 AC 154 ms
53,768 KB
testcase_20 AC 150 ms
53,876 KB
testcase_21 AC 153 ms
54,000 KB
testcase_22 AC 153 ms
53,924 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" : "impossoble");
	}

}
0