結果
問題 | No.4 おもりと天秤 |
ユーザー | holeguma |
提出日時 | 2015-07-26 02:46:47 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 762 bytes |
コンパイル時間 | 1,769 ms |
コンパイル使用メモリ | 77,732 KB |
実行使用メモリ | 44,252 KB |
最終ジャッジ日時 | 2024-07-08 13:58:35 |
合計ジャッジ時間 | 9,252 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
37,064 KB |
testcase_01 | AC | 45 ms
36,772 KB |
testcase_02 | AC | 49 ms
36,728 KB |
testcase_03 | AC | 45 ms
37,092 KB |
testcase_04 | AC | 46 ms
36,960 KB |
testcase_05 | AC | 45 ms
36,768 KB |
testcase_06 | AC | 43 ms
36,916 KB |
testcase_07 | AC | 48 ms
36,916 KB |
testcase_08 | AC | 46 ms
36,592 KB |
testcase_09 | AC | 45 ms
36,808 KB |
testcase_10 | AC | 49 ms
36,932 KB |
testcase_11 | AC | 43 ms
36,744 KB |
testcase_12 | AC | 43 ms
37,004 KB |
testcase_13 | AC | 43 ms
36,896 KB |
testcase_14 | AC | 43 ms
36,488 KB |
testcase_15 | AC | 42 ms
36,604 KB |
testcase_16 | AC | 43 ms
37,064 KB |
testcase_17 | AC | 42 ms
36,616 KB |
testcase_18 | TLE | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
ソースコード
import java.io.*; import java.util.Arrays; class Main{ public static void main(String[] args) throws IOException{ BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); String line=""; while((line=br.readLine())!=null){ int n=Integer.parseInt(line); int[] w=new int[n]; int total=0; String[] values=br.readLine().split(" "); for(int i=0;i<n;i++){ w[i]=Integer.parseInt(values[i]); total+=w[i]; } Arrays.sort(w); if(total%2==1){ System.out.println("impossible"); continue; } total/=2; System.out.println(dfs(total,0,w)?"possible":"impossible"); } } private static boolean dfs(int sum,int now,final int[] w){ if(sum==0){ return true; } if(now>=w.length||sum<0){ return false; } return dfs(sum-w[now],now+1,w)?true:dfs(sum,now+1,w)?true:false; } }