結果

問題 No.4 おもりと天秤
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-02 02:24:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 156 ms / 5,000 ms
コード長 705 bytes
コンパイル時間 3,517 ms
コンパイル使用メモリ 74,388 KB
実行使用メモリ 55,968 KB
最終ジャッジ日時 2024-06-26 09:34:34
合計ジャッジ時間 7,721 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
53,872 KB
testcase_01 AC 138 ms
53,784 KB
testcase_02 AC 134 ms
54,116 KB
testcase_03 AC 137 ms
54,120 KB
testcase_04 AC 136 ms
53,944 KB
testcase_05 AC 149 ms
53,864 KB
testcase_06 AC 134 ms
54,080 KB
testcase_07 AC 151 ms
53,988 KB
testcase_08 AC 146 ms
53,992 KB
testcase_09 AC 156 ms
54,140 KB
testcase_10 AC 153 ms
54,268 KB
testcase_11 AC 136 ms
54,036 KB
testcase_12 AC 135 ms
53,892 KB
testcase_13 AC 139 ms
53,676 KB
testcase_14 AC 141 ms
55,968 KB
testcase_15 AC 134 ms
54,100 KB
testcase_16 AC 133 ms
53,868 KB
testcase_17 AC 133 ms
54,128 KB
testcase_18 AC 148 ms
54,112 KB
testcase_19 AC 151 ms
54,232 KB
testcase_20 AC 149 ms
54,208 KB
testcase_21 AC 149 ms
54,052 KB
testcase_22 AC 149 ms
53,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise45{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    int n = sc.nextInt();
    int[] weight = new int[n];
    int sum = 0;

    for (int i = 0; i < n; i++){
      int x = sc.nextInt();
      weight[i] = x;
      sum += x;
    }

    boolean[] dp = new boolean[sum + 1];
    dp[0] = true;

    for(int a = 0; a < n; a++){
      for(int b = sum; b >= 0; b--){
        if(dp[b] == true){
          //System.out.println(b);
          dp[b + weight[a]] = true;
        }
      }
    }

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