結果

問題 No.4 おもりと天秤
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-01 19:47:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 176 ms / 5,000 ms
コード長 907 bytes
コンパイル時間 3,623 ms
コンパイル使用メモリ 77,460 KB
実行使用メモリ 58,944 KB
最終ジャッジ日時 2024-06-26 09:34:19
合計ジャッジ時間 8,082 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
53,916 KB
testcase_01 AC 146 ms
54,404 KB
testcase_02 AC 135 ms
54,232 KB
testcase_03 AC 134 ms
53,760 KB
testcase_04 AC 140 ms
54,148 KB
testcase_05 AC 170 ms
56,280 KB
testcase_06 AC 135 ms
54,048 KB
testcase_07 AC 176 ms
56,460 KB
testcase_08 AC 146 ms
54,148 KB
testcase_09 AC 171 ms
58,944 KB
testcase_10 AC 164 ms
56,036 KB
testcase_11 AC 138 ms
54,128 KB
testcase_12 AC 135 ms
53,892 KB
testcase_13 AC 133 ms
54,032 KB
testcase_14 AC 135 ms
53,980 KB
testcase_15 AC 136 ms
53,844 KB
testcase_16 AC 135 ms
54,096 KB
testcase_17 AC 137 ms
54,040 KB
testcase_18 AC 170 ms
56,492 KB
testcase_19 AC 161 ms
56,180 KB
testcase_20 AC 171 ms
56,060 KB
testcase_21 AC 168 ms
56,252 KB
testcase_22 AC 164 ms
56,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise44{
  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;
    }

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

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

    for(int i = 0; i < n + 1; i++){
      for (int j = 1; j < sum + 1; j++){
        dp[i][j] = -1;
      }
    }

    for(int a = 0; a < n; a++){
      for(int b = 0; b < sum; b++){
        if(dp[a][b] >= 0){
          dp[a + 1][b] = dp[a][b];
          dp[a + 1][b + weight[a]] = dp[a][b] + weight[a];
        }
      }
    }

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