結果

問題 No.4 おもりと天秤
ユーザー jp_stejp_ste
提出日時 2016-02-02 09:25:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 148 ms / 5,000 ms
コード長 716 bytes
コンパイル時間 2,081 ms
コンパイル使用メモリ 74,716 KB
実行使用メモリ 41,492 KB
最終ジャッジ日時 2024-06-26 09:23:56
合計ジャッジ時間 6,038 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
40,896 KB
testcase_01 AC 113 ms
39,812 KB
testcase_02 AC 132 ms
41,312 KB
testcase_03 AC 118 ms
39,944 KB
testcase_04 AC 129 ms
41,116 KB
testcase_05 AC 145 ms
41,224 KB
testcase_06 AC 129 ms
41,148 KB
testcase_07 AC 142 ms
41,492 KB
testcase_08 AC 140 ms
41,292 KB
testcase_09 AC 148 ms
41,464 KB
testcase_10 AC 142 ms
41,208 KB
testcase_11 AC 130 ms
41,224 KB
testcase_12 AC 128 ms
41,072 KB
testcase_13 AC 126 ms
41,244 KB
testcase_14 AC 111 ms
39,944 KB
testcase_15 AC 128 ms
41,096 KB
testcase_16 AC 128 ms
41,204 KB
testcase_17 AC 127 ms
41,220 KB
testcase_18 AC 146 ms
41,444 KB
testcase_19 AC 143 ms
41,216 KB
testcase_20 AC 144 ms
41,408 KB
testcase_21 AC 147 ms
41,464 KB
testcase_22 AC 143 ms
41,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		int list[] = new int[N];
		int sum = 0;
		for(int i=0; i<N; i++) {
			list[i] = scan.nextInt();
			sum += list[i];
		}
		scan.close();
		
		if(sum % 2 == 1) {
			System.out.println("impossible");
		} else {
			int target = sum / 2;
			boolean dp[] = new boolean[sum+1];
			dp[list[0]] = true;
			
			for(int i=1; i<N; i++) {
				for(int j=sum; j>=1; j--) {
					if(dp[j]) dp[j+list[i]] = true;
				}
				dp[list[i]] = true;
			}
			
			if(dp[target]) {
				System.out.println("possible");
			} else {
				System.out.println("impossible");
			}
		}
    }	
}
0