結果

問題 No.4 おもりと天秤
ユーザー nCk_cvnCk_cv
提出日時 2016-02-06 17:13:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 152 ms / 5,000 ms
コード長 656 bytes
コンパイル時間 2,023 ms
コンパイル使用メモリ 77,716 KB
実行使用メモリ 42,252 KB
最終ジャッジ日時 2024-06-26 09:23:49
合計ジャッジ時間 5,993 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,056 KB
testcase_01 AC 126 ms
41,208 KB
testcase_02 AC 125 ms
41,100 KB
testcase_03 AC 127 ms
41,172 KB
testcase_04 AC 119 ms
40,056 KB
testcase_05 AC 142 ms
41,716 KB
testcase_06 AC 127 ms
41,096 KB
testcase_07 AC 149 ms
42,000 KB
testcase_08 AC 131 ms
40,856 KB
testcase_09 AC 149 ms
42,252 KB
testcase_10 AC 152 ms
42,016 KB
testcase_11 AC 129 ms
41,192 KB
testcase_12 AC 125 ms
41,060 KB
testcase_13 AC 127 ms
41,056 KB
testcase_14 AC 125 ms
41,180 KB
testcase_15 AC 127 ms
41,028 KB
testcase_16 AC 130 ms
41,152 KB
testcase_17 AC 128 ms
41,148 KB
testcase_18 AC 148 ms
41,884 KB
testcase_19 AC 146 ms
42,096 KB
testcase_20 AC 145 ms
41,776 KB
testcase_21 AC 144 ms
41,912 KB
testcase_22 AC 144 ms
41,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;
import java.io.*;
 
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];
		}
		boolean[][] dp = new boolean[n+1][sum+1];
		dp[0][0] = true;
		for(int i = 0; i < n; i++) {
			for(int j = 0; j <= sum; j++) {
				if(!dp[i][j]) continue;
				dp[i+1][j] |= dp[i][j];
				dp[i+1][j + w[i]] = true; 
			}
		}
		if(sum % 2 == 0 && dp[n][sum / 2]) {
			System.out.println("possible");
		}
		else {
			System.out.println("impossible");
		}
	}
}
0