結果
問題 | No.4 おもりと天秤 |
ユーザー | spacia |
提出日時 | 2015-12-19 11:01:11 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 958 bytes |
コンパイル時間 | 2,064 ms |
コンパイル使用メモリ | 77,904 KB |
実行使用メモリ | 50,720 KB |
最終ジャッジ日時 | 2024-09-16 08:54:05 |
合計ジャッジ時間 | 4,122 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 52 ms
37,188 KB |
testcase_01 | AC | 52 ms
37,136 KB |
testcase_02 | AC | 52 ms
37,168 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 52 ms
37,212 KB |
testcase_07 | WA | - |
testcase_08 | AC | 52 ms
37,068 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 52 ms
37,376 KB |
testcase_12 | AC | 52 ms
37,240 KB |
testcase_13 | AC | 52 ms
37,272 KB |
testcase_14 | AC | 52 ms
37,240 KB |
testcase_15 | AC | 53 ms
37,120 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 58 ms
37,376 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
ソースコード
import java.io.*; import java.util.*; class Main4 { public static boolean check (int[] nums, int target) { boolean[] dp = new boolean[target + 1]; Arrays.sort(nums); dp[0] = true; for (int i = 0; i < nums.length; i++) { for (int j = 0; j <= target; j++) { if (!dp[j]) continue; if (nums[i] + j <= target) dp[j = nums[i] + j] = true; else break; } } return dp[target]; } public static void main (String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int n = Integer.parseInt(br.readLine()); int target = 0; int[] nums = new int[n]; String[] str = br.readLine().split(" "); for (int i = 0; i < n; i++) { nums[i] = Integer.parseInt(str[i]); target += nums[i]; } if (target % 2 == 1) System.out.println("impossible"); else { target /= 2; System.out.println(check(nums, target) ? "possible" : "impossible"); } } }