結果
問題 | No.4 おもりと天秤 |
ユーザー | takeya_okino |
提出日時 | 2017-06-12 11:58:51 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 738 bytes |
コンパイル時間 | 1,924 ms |
コンパイル使用メモリ | 77,348 KB |
実行使用メモリ | 63,620 KB |
最終ジャッジ日時 | 2024-09-24 16:43:11 |
合計ジャッジ時間 | 5,953 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 129 ms
54,088 KB |
testcase_02 | AC | 134 ms
55,948 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 123 ms
54,060 KB |
testcase_07 | WA | - |
testcase_08 | AC | 151 ms
63,024 KB |
testcase_09 | AC | 150 ms
63,200 KB |
testcase_10 | WA | - |
testcase_11 | AC | 131 ms
54,120 KB |
testcase_12 | AC | 108 ms
52,736 KB |
testcase_13 | AC | 124 ms
54,020 KB |
testcase_14 | AC | 122 ms
54,028 KB |
testcase_15 | AC | 121 ms
53,864 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 151 ms
63,168 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); int[] w = new int[N]; for(int i = 0; i < N; i++) w[i] = sc.nextInt(); // dp[i][j]は重りiまでで和をj-10000と出来るかを表す int[][] dp = new int[N][20001]; dp[0][w[0] + 10000] = 1; dp[0][-w[0] + 10000] = 1; for(int i = 1; i < N; i++) { for(int j = 0; j < 20001; j++) { if((j + w[i] < 20001) && (dp[i - 1][j + w[i]] == 1)) dp[i][j] = 1; if((j - w[i] >= 0) && (dp[i - 1][j - w[i]] == 1)) dp[i][j] = 1; } } String ans = "impossible"; if(dp[N - 1][0] == 1) ans = "possible"; System.out.println(ans); } }