結果
問題 | No.4 おもりと天秤 |
ユーザー | youthfuldays072 |
提出日時 | 2018-05-04 10:36:15 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 548 bytes |
コンパイル時間 | 2,220 ms |
コンパイル使用メモリ | 77,784 KB |
実行使用メモリ | 41,820 KB |
最終ジャッジ日時 | 2024-06-28 00:58:23 |
合計ジャッジ時間 | 6,105 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 125 ms
41,180 KB |
testcase_01 | AC | 114 ms
40,116 KB |
testcase_02 | AC | 129 ms
41,416 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 134 ms
41,160 KB |
testcase_07 | WA | - |
testcase_08 | AC | 144 ms
41,324 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 137 ms
41,316 KB |
testcase_12 | AC | 132 ms
41,156 KB |
testcase_13 | AC | 127 ms
41,016 KB |
testcase_14 | AC | 130 ms
41,216 KB |
testcase_15 | AC | 115 ms
40,008 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 134 ms
41,176 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
ソースコード
import java.util.Scanner; public class Main{ public static void main(String[] args) { Main main=new Main(); main.run(); } void run() { Scanner sc=new Scanner(System.in); int n=sc.nextInt(); int[] w=new int[n]; for (int i = 0; i < w.length; i++) { w[i]=sc.nextInt(); } int[] dp= new int[10001]; int sum=0; dp[0]=1; for(int i=0;i<n;i++) { sum+=w[i]; dp[i+w[i]]=dp[i]; } if(sum%2==1 || dp[sum/2]==0) { System.out.println("impossible"); }else { System.out.println("possible"); } } }