結果

問題 No.4 おもりと天秤
ユーザー spaciaspacia
提出日時 2015-12-19 11:37:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 63 ms / 5,000 ms
コード長 1,128 bytes
コンパイル時間 2,261 ms
コンパイル使用メモリ 77,996 KB
実行使用メモリ 37,576 KB
最終ジャッジ日時 2024-06-26 09:22:07
合計ジャッジ時間 4,388 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,792 KB
testcase_01 AC 51 ms
36,836 KB
testcase_02 AC 52 ms
37,008 KB
testcase_03 AC 52 ms
37,092 KB
testcase_04 AC 49 ms
37,204 KB
testcase_05 AC 60 ms
37,420 KB
testcase_06 AC 51 ms
36,924 KB
testcase_07 AC 60 ms
37,576 KB
testcase_08 AC 51 ms
36,784 KB
testcase_09 AC 63 ms
37,540 KB
testcase_10 AC 61 ms
37,572 KB
testcase_11 AC 51 ms
37,128 KB
testcase_12 AC 53 ms
36,988 KB
testcase_13 AC 50 ms
36,916 KB
testcase_14 AC 53 ms
36,744 KB
testcase_15 AC 52 ms
36,792 KB
testcase_16 AC 51 ms
36,752 KB
testcase_17 AC 53 ms
37,004 KB
testcase_18 AC 58 ms
37,008 KB
testcase_19 AC 59 ms
37,424 KB
testcase_20 AC 58 ms
37,408 KB
testcase_21 AC 58 ms
37,388 KB
testcase_22 AC 60 ms
37,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main4 {
	
	public static boolean check (int[] nums, int target) {
		boolean[] dp = new boolean[target + 1];
		
		Arrays.sort(nums);
		dp[0] = true;
		for (int i = 0; i < nums.length; i++) {
			boolean[] addFlg = new boolean[target + 1];
			for (int j = 0; j <= target; j++) {
				if (!dp[j] || addFlg[j]) continue;
				int res = nums[i] + j;
				if (res <= target) {
					if (dp[res]) continue;
					dp[res] = true;
					addFlg[res] = true;
				} else
					break;
			}
			//System.out.println(Arrays.toString(dp));
		}
		return dp[target];
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		int n = Integer.parseInt(br.readLine());
		int target = 0;
		int[] nums = new int[n];
		String[] str = br.readLine().split(" ");
		for (int i = 0; i < n; i++) {
			nums[i] = Integer.parseInt(str[i]);
			target += nums[i];
		}
		if (target % 2 == 1)
			System.out.println("impossible");
		else {
			target /= 2;
			System.out.println(check(nums, target) ? "possible" : "impossible");
		}
	}
}
0