結果

問題 No.4 おもりと天秤
ユーザー kuramukuramu
提出日時 2016-01-20 15:46:43
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 1,120 bytes
コンパイル時間 2,229 ms
コンパイル使用メモリ 78,264 KB
実行使用メモリ 37,616 KB
最終ジャッジ日時 2024-09-21 14:47:42
合計ジャッジ時間 4,571 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
37,160 KB
testcase_01 AC 53 ms
36,784 KB
testcase_02 AC 53 ms
37,116 KB
testcase_03 AC 56 ms
37,072 KB
testcase_04 AC 56 ms
37,160 KB
testcase_05 AC 63 ms
37,452 KB
testcase_06 RE -
testcase_07 AC 66 ms
37,616 KB
testcase_08 AC 51 ms
36,984 KB
testcase_09 AC 64 ms
37,520 KB
testcase_10 AC 66 ms
37,392 KB
testcase_11 WA -
testcase_12 RE -
testcase_13 AC 53 ms
37,008 KB
testcase_14 WA -
testcase_15 AC 53 ms
37,060 KB
testcase_16 AC 52 ms
37,184 KB
testcase_17 AC 54 ms
37,244 KB
testcase_18 AC 62 ms
37,364 KB
testcase_19 AC 65 ms
36,976 KB
testcase_20 AC 63 ms
37,376 KB
testcase_21 AC 61 ms
37,076 KB
testcase_22 AC 64 ms
37,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;

public class Main {
	public static void main(String[] args) {
	      BufferedReader stdReader =new BufferedReader(new InputStreamReader(System.in));
	      try {
		      int N = Integer.parseInt(stdReader.readLine());
		      String[] temps = stdReader.readLine().split(" ");
		      int[] nums = new int[N+1];
		      int sum = 0;
		      for(int i=0;i<N;i++){
		    	  nums[i+1] = Integer.parseInt(temps[i]);
		    	  sum += nums[i+1];
		      }
		      if(sum%2 != 0){
		    	  System.out.println("impossible");
		    	  return;
		      }
		      Arrays.sort(nums);
		      int half = sum/2;
		      boolean[] dp = new boolean[half+1];
		      for(int i=1;i<nums.length;i++){
		    	  dp[nums[i]] = true;
		    	  for(int j=1;j<half+1;j++){
		    		  if(dp[j] && j+ nums[i] <= half) dp[j+nums[i]] = true;
		    	  }
		      }
		      if(dp[half]) System.out.println("possible");
		      else System.out.println("impossible");
	    	  } catch (IOException e) {
			e.printStackTrace();
	      }
	}	
}
0