結果

問題 No.4 おもりと天秤
ユーザー tetsutetsu
提出日時 2017-10-17 14:02:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 172 ms / 5,000 ms
コード長 844 bytes
コンパイル時間 3,179 ms
コンパイル使用メモリ 77,880 KB
実行使用メモリ 54,408 KB
最終ジャッジ日時 2024-06-26 10:24:00
合計ジャッジ時間 7,166 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
53,968 KB
testcase_01 AC 125 ms
54,060 KB
testcase_02 AC 112 ms
53,016 KB
testcase_03 AC 123 ms
54,012 KB
testcase_04 AC 129 ms
53,932 KB
testcase_05 AC 163 ms
54,076 KB
testcase_06 AC 122 ms
53,836 KB
testcase_07 AC 163 ms
54,176 KB
testcase_08 AC 131 ms
54,128 KB
testcase_09 AC 162 ms
53,900 KB
testcase_10 AC 163 ms
54,172 KB
testcase_11 AC 107 ms
52,992 KB
testcase_12 AC 122 ms
54,064 KB
testcase_13 AC 127 ms
54,408 KB
testcase_14 AC 122 ms
53,952 KB
testcase_15 AC 123 ms
53,792 KB
testcase_16 AC 123 ms
54,156 KB
testcase_17 AC 122 ms
54,084 KB
testcase_18 AC 165 ms
54,204 KB
testcase_19 AC 172 ms
54,176 KB
testcase_20 AC 168 ms
54,128 KB
testcase_21 AC 163 ms
54,100 KB
testcase_22 AC 156 ms
53,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;
import java.util.*;

public class P4 {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int sum = 0;
		int[] W = new int[N];
		for(int i=0; i<N; i++) {
			W[i] = sc.nextInt();
			sum += W[i];
		}
		if(sum%2==1) {
			System.out.println("impossible");
			return;
		}
		boolean[][] possible = new boolean[N+1][sum+1];
		for(int i=0; i<N+1; i++) {
			Arrays.fill(possible[i], false);
		}
		possible[0][0] = true;
		for(int i=0; i<N; i++) {
			for(int w=0; w<=sum; w++) {
				if(w-W[i]>=0&&possible[i][w-W[i]]) {
					possible[i+1][w] = true;
				} else {
					possible[i+1][w] = possible[i][w];
				}
			}
		}
		if(possible[N][sum/2]) {
			System.out.println("possible");
		} else {
			System.out.println("impossible");
		}
		
	}

}
0