結果

問題 No.4 おもりと天秤
ユーザー scachescache
提出日時 2014-11-12 09:53:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 160 ms / 5,000 ms
コード長 793 bytes
コンパイル時間 3,779 ms
コンパイル使用メモリ 78,228 KB
実行使用メモリ 41,752 KB
最終ジャッジ日時 2024-06-26 09:03:42
合計ジャッジ時間 8,157 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,348 KB
testcase_01 AC 134 ms
41,372 KB
testcase_02 AC 146 ms
41,460 KB
testcase_03 AC 138 ms
41,296 KB
testcase_04 AC 145 ms
41,484 KB
testcase_05 AC 159 ms
41,752 KB
testcase_06 AC 137 ms
41,544 KB
testcase_07 AC 158 ms
41,592 KB
testcase_08 AC 145 ms
41,588 KB
testcase_09 AC 157 ms
41,596 KB
testcase_10 AC 153 ms
41,520 KB
testcase_11 AC 139 ms
41,264 KB
testcase_12 AC 137 ms
41,532 KB
testcase_13 AC 139 ms
41,288 KB
testcase_14 AC 139 ms
41,008 KB
testcase_15 AC 137 ms
41,224 KB
testcase_16 AC 148 ms
41,368 KB
testcase_17 AC 138 ms
41,340 KB
testcase_18 AC 157 ms
41,300 KB
testcase_19 AC 157 ms
41,412 KB
testcase_20 AC 159 ms
41,408 KB
testcase_21 AC 160 ms
41,564 KB
testcase_22 AC 155 ms
41,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main4 {
	public static void main(String[] args) {
		Main4 p = new Main4();
	}

	public Main4() {
		Scanner sc = new Scanner(System.in);
		int n =sc.nextInt();
		int[] w =new int[n];
		for(int i=0;i<n;i++)
			w[i] = sc.nextInt();
		solve(n, w);
	}

	public void solve(int n, int[] w) {
		Arrays.sort(w);
		boolean[] dp = new boolean[w[n-1]*w[n-1]+1];
		
		dp[0] = true;
		for(int i=0;i<w.length;i++){
			for(int j=dp.length-1;j>=0;j--){
				if(j-w[i] >= 0 && dp[j-w[i]]){
					dp[j] = true;
				}
			}
		}
		
		int sum = 0;
		for(int i=0;i<w.length;i++)
			sum += w[i];
		if(sum%2==0 && dp[sum/2])
			System.out.println("possible");
		else
			System.out.println("impossible");
		
	}

}
0