結果

問題 No.4 おもりと天秤
ユーザー villachvillach
提出日時 2017-10-05 16:24:24
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 959 bytes
コンパイル時間 3,034 ms
コンパイル使用メモリ 77,556 KB
実行使用メモリ 42,544 KB
最終ジャッジ日時 2024-11-16 21:05:28
合計ジャッジ時間 6,588 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
40,812 KB
testcase_01 AC 104 ms
40,064 KB
testcase_02 AC 109 ms
40,900 KB
testcase_03 AC 105 ms
40,448 KB
testcase_04 AC 101 ms
40,320 KB
testcase_05 AC 120 ms
42,068 KB
testcase_06 AC 110 ms
41,236 KB
testcase_07 AC 127 ms
42,092 KB
testcase_08 AC 112 ms
41,860 KB
testcase_09 RE -
testcase_10 AC 130 ms
41,988 KB
testcase_11 AC 103 ms
40,264 KB
testcase_12 AC 107 ms
40,960 KB
testcase_13 AC 116 ms
40,984 KB
testcase_14 AC 105 ms
39,976 KB
testcase_15 AC 105 ms
39,964 KB
testcase_16 AC 104 ms
39,824 KB
testcase_17 AC 107 ms
40,216 KB
testcase_18 AC 129 ms
42,044 KB
testcase_19 AC 125 ms
42,212 KB
testcase_20 AC 131 ms
42,096 KB
testcase_21 AC 130 ms
42,364 KB
testcase_22 AC 132 ms
42,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.ArrayList;
import java.util.Scanner;

public class N4 {
	private int n, sum, half;
	private int[] bobs;
	private boolean[][] dp;
	
	public static void main(String[] args){
		N4 n4 = new N4();
	}

	N4(){
		Scanner sc = new Scanner(System.in);
		this.n = sc.nextInt();
		this.bobs = new int[n];
		this.dp = new boolean[n + 1][10000];
		
		for(int i = 0;i < n;++i){
			bobs[i] = sc.nextInt();
			sum += bobs[i];
		}
		
		if(sum % 2 == 1){
			System.out.println("impossible");
			return;
		}
		
		this.half = sum / 2;
		
		if(this.solve()){
			System.out.println("possible");
		}else{
			System.out.println("impossible");
		}
	}
	
	//めう
	private boolean solve() {
		dp[0][0] = true;
		for(int k = 0;k < n;++k){
			int b = bobs[k];
			for(int weight = 0;weight < 10000;++weight){
				if(dp[k][weight]){
					dp[k + 1][weight + b] = true;
					dp[k + 1][weight] = true;
				}
			}
		}
		
		return dp[this.n - 1][half];
	}
}
0