結果
問題 | No.4 おもりと天秤 |
ユーザー | kuramu |
提出日時 | 2016-01-20 15:57:52 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,182 bytes |
コンパイル時間 | 2,120 ms |
コンパイル使用メモリ | 77,092 KB |
実行使用メモリ | 37,372 KB |
最終ジャッジ日時 | 2024-09-21 14:47:47 |
合計ジャッジ時間 | 4,188 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 52 ms
37,116 KB |
testcase_01 | AC | 53 ms
37,196 KB |
testcase_02 | AC | 52 ms
36,704 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | RE | - |
testcase_07 | WA | - |
testcase_08 | AC | 52 ms
37,044 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 53 ms
36,828 KB |
testcase_12 | RE | - |
testcase_13 | AC | 54 ms
37,000 KB |
testcase_14 | AC | 52 ms
36,828 KB |
testcase_15 | AC | 52 ms
37,232 KB |
testcase_16 | AC | 52 ms
36,972 KB |
testcase_17 | AC | 52 ms
37,168 KB |
testcase_18 | AC | 56 ms
37,184 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.Arrays; public class Main { public static void main(String[] args) { BufferedReader stdReader =new BufferedReader(new InputStreamReader(System.in)); try { int N = Integer.parseInt(stdReader.readLine()); String[] temps = stdReader.readLine().split(" "); int[] nums = new int[N+1]; int sum = 0; for(int i=0;i<N;i++){ nums[i+1] = Integer.parseInt(temps[i]); sum += nums[i+1]; } if(sum%2 != 0){ System.out.println("impossible"); return; } Arrays.sort(nums); int half = sum/2; boolean[] dp = new boolean[half+1]; dp[nums[1]] = true; for(int i=2;i<nums.length;i++){ dp[nums[i]] = true; for(int j=1;j<half+1;j++){ if(j > nums[i]) break; if(dp[j] && j+nums[i] <= half) dp[j+nums[i]] = true; } } if(dp[half]) System.out.println("possible"); else System.out.println("impossible"); } catch (IOException e) { e.printStackTrace(); } } }