結果

問題 No.4 おもりと天秤
ユーザー snzt_rysnzt_ry
提出日時 2017-11-21 10:25:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 154 ms / 5,000 ms
コード長 724 bytes
コンパイル時間 1,976 ms
コンパイル使用メモリ 77,868 KB
実行使用メモリ 43,596 KB
最終ジャッジ日時 2024-06-26 10:24:44
合計ジャッジ時間 5,942 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,496 KB
testcase_01 AC 122 ms
41,268 KB
testcase_02 AC 125 ms
41,064 KB
testcase_03 AC 122 ms
41,016 KB
testcase_04 AC 111 ms
40,472 KB
testcase_05 AC 146 ms
42,748 KB
testcase_06 AC 123 ms
41,112 KB
testcase_07 AC 147 ms
42,432 KB
testcase_08 AC 132 ms
41,224 KB
testcase_09 AC 145 ms
43,596 KB
testcase_10 AC 143 ms
42,404 KB
testcase_11 AC 124 ms
41,404 KB
testcase_12 AC 112 ms
41,332 KB
testcase_13 AC 113 ms
39,984 KB
testcase_14 AC 124 ms
41,244 KB
testcase_15 AC 112 ms
40,216 KB
testcase_16 AC 126 ms
41,092 KB
testcase_17 AC 125 ms
41,536 KB
testcase_18 AC 151 ms
42,820 KB
testcase_19 AC 149 ms
42,668 KB
testcase_20 AC 149 ms
42,436 KB
testcase_21 AC 149 ms
42,560 KB
testcase_22 AC 154 ms
42,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scanner = new Scanner(System.in);
		int n = scanner.nextInt();
		int sum = 0;
		int[] v = new int[n+1];


		for(int i = 1; i < n+1; i++){
			v[i] = scanner.nextInt();
			sum += v[i];
		}

		if(sum % 2 == 1){
			System.out.println("impossible");
			return;
		}

		int[][] dp = new int[n+1][sum/2+1];

		for(int i = 1; i < n+1; i++){
			for(int j = 1; j < sum/2+1; j++){
				if(j >= v[i]){
					dp[i][j] = Math.max(dp[i-1][j], dp[i-1][j-v[i]] + v[i]);
				}else {
					dp[i][j] = dp[i-1][j];
				}
			}
		}

		if(dp[n][sum/2] == sum/2){
			System.out.println("possible");
		}else {
			System.out.println("impossible");
		}
	}
}
0