結果
問題 | No.4 おもりと天秤 |
ユーザー | spacia |
提出日時 | 2015-12-19 11:08:19 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,054 bytes |
コンパイル時間 | 2,726 ms |
コンパイル使用メモリ | 77,996 KB |
実行使用メモリ | 37,416 KB |
最終ジャッジ日時 | 2024-09-16 08:54:34 |
合計ジャッジ時間 | 4,296 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 47 ms
37,008 KB |
testcase_01 | AC | 45 ms
36,944 KB |
testcase_02 | AC | 45 ms
36,864 KB |
testcase_03 | WA | - |
testcase_04 | AC | 47 ms
36,808 KB |
testcase_05 | WA | - |
testcase_06 | AC | 46 ms
36,896 KB |
testcase_07 | WA | - |
testcase_08 | AC | 46 ms
36,728 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 46 ms
36,652 KB |
testcase_12 | AC | 47 ms
36,784 KB |
testcase_13 | AC | 46 ms
36,876 KB |
testcase_14 | AC | 47 ms
36,664 KB |
testcase_15 | AC | 47 ms
36,932 KB |
testcase_16 | AC | 48 ms
36,916 KB |
testcase_17 | WA | - |
testcase_18 | AC | 50 ms
37,292 KB |
testcase_19 | AC | 52 ms
37,080 KB |
testcase_20 | AC | 54 ms
37,132 KB |
testcase_21 | WA | - |
testcase_22 | AC | 52 ms
37,208 KB |
ソースコード
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++) { boolean[] addFlg = new boolean[target + 1]; for (int j = 0; j <= target; j++) { if (!dp[j] || addFlg[j]) continue; int res = nums[i] + j; if (res <= target) { dp[res] = true; addFlg[res] = 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"); } } }