結果

問題 No.4 おもりと天秤
ユーザー mits58mits58
提出日時 2015-12-12 00:06:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 169 ms / 5,000 ms
コード長 1,025 bytes
コンパイル時間 2,192 ms
コンパイル使用メモリ 77,320 KB
実行使用メモリ 43,612 KB
最終ジャッジ日時 2024-06-26 09:21:30
合計ジャッジ時間 6,475 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,484 KB
testcase_01 AC 133 ms
41,532 KB
testcase_02 AC 136 ms
41,228 KB
testcase_03 AC 136 ms
41,228 KB
testcase_04 AC 135 ms
41,172 KB
testcase_05 AC 161 ms
42,420 KB
testcase_06 AC 130 ms
41,240 KB
testcase_07 AC 160 ms
42,620 KB
testcase_08 AC 139 ms
41,516 KB
testcase_09 AC 154 ms
43,612 KB
testcase_10 AC 166 ms
43,128 KB
testcase_11 AC 136 ms
41,440 KB
testcase_12 AC 136 ms
41,472 KB
testcase_13 AC 133 ms
41,368 KB
testcase_14 AC 134 ms
41,300 KB
testcase_15 AC 134 ms
41,264 KB
testcase_16 AC 133 ms
41,332 KB
testcase_17 AC 135 ms
41,332 KB
testcase_18 AC 169 ms
42,556 KB
testcase_19 AC 162 ms
42,356 KB
testcase_20 AC 164 ms
42,936 KB
testcase_21 AC 160 ms
42,292 KB
testcase_22 AC 165 ms
42,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{
	static int n;
	static int[] w;
	static int[][] dp;
	static boolean res(int x,int h){
		if(h==0) return true;
		else if(h<0) return false;
		else if(x==n-1) return false;
		else if(dp[x][h]!=-1){
			if(dp[x][h]==0) return true;
			else return false;
		}
		else{
			if(res(x+1,h)||res(x+1,h-w[x])){
				dp[x][h]=0;
				return true;
			}
			else{
				dp[x][h]=1;
				return false;
			}
		}
	}
    public static void main(String[] args){
    	Scanner sc=new Scanner(System.in);
        while(sc.hasNext()){
        	n=sc.nextInt();
        	w=new int[n];
        	int sum=0;
        	for(int i=0;i<n;i++){
        		w[i]=sc.nextInt();
        		sum+=w[i];
        	}
        	if(sum%2!=0) System.out.println("impossible");
        	else{
        		dp=new int[n][sum/2+1];
        		for(int i=0;i<n;i++) for(int j=0;j<sum/2+1;j++) dp[i][j]=-1;
        		if(res(0,sum/2)) System.out.println("possible");
            	else System.out.println("impossible");
        	}
        }
    }
}
0