結果
問題 | No.4 おもりと天秤 |
ユーザー | mosmos_21 |
提出日時 | 2017-06-17 12:20:28 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,149 bytes |
コンパイル時間 | 2,205 ms |
コンパイル使用メモリ | 77,260 KB |
実行使用メモリ | 54,340 KB |
最終ジャッジ日時 | 2024-10-01 09:30:29 |
合計ジャッジ時間 | 5,678 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 117 ms
53,980 KB |
testcase_01 | AC | 121 ms
53,868 KB |
testcase_02 | WA | - |
testcase_03 | AC | 121 ms
53,996 KB |
testcase_04 | AC | 129 ms
53,584 KB |
testcase_05 | AC | 145 ms
53,520 KB |
testcase_06 | WA | - |
testcase_07 | AC | 140 ms
54,180 KB |
testcase_08 | AC | 131 ms
53,800 KB |
testcase_09 | AC | 142 ms
54,340 KB |
testcase_10 | AC | 139 ms
54,016 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 134 ms
53,872 KB |
testcase_17 | AC | 131 ms
53,432 KB |
testcase_18 | WA | - |
testcase_19 | AC | 137 ms
53,880 KB |
testcase_20 | AC | 138 ms
54,176 KB |
testcase_21 | AC | 143 ms
54,084 KB |
testcase_22 | AC | 142 ms
53,856 KB |
ソースコード
import java.util.Scanner; public class Main { static Scanner in = new Scanner(System.in); public static void main(String[] args) { int N = in.nextInt(); int[] w = new int[N]; int sum = 0; for (int i = 0; i < N; i++) { w[i] = in.nextInt(); sum += w[i]; } if (sum % 2 == 1) { System.out.println("impossible"); return; } int h = sum / 2; boolean[][] dp = new boolean[h + 1][N + 1]; for (int i = 0; i < dp.length; i++) { dp[i][0] = true; } for (int i = 0; i < dp[0].length; i++) { dp[0][i] = true; } for (int i = 0; i < dp.length; i++) { for (int j = 1; j < dp[0].length; j++) { if (dp[i][j - 1] && i + w[j - 1] <= h) { dp[i + w[j - 1]][j] = true; } else { dp[i][j] = dp[i][j - 1]; } } } if (dp[h][N]) { System.out.println("possible"); } else { System.out.println("impossible"); } } }