結果
問題 | No.4 おもりと天秤 |
ユーザー | kou6839 |
提出日時 | 2014-11-08 14:36:25 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 767 bytes |
コンパイル時間 | 2,673 ms |
コンパイル使用メモリ | 78,264 KB |
実行使用メモリ | 61,556 KB |
最終ジャッジ日時 | 2024-06-10 01:45:54 |
合計ジャッジ時間 | 10,483 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 139 ms
61,216 KB |
testcase_01 | AC | 138 ms
53,924 KB |
testcase_02 | AC | 147 ms
54,620 KB |
testcase_03 | AC | 143 ms
53,844 KB |
testcase_04 | AC | 146 ms
54,148 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
ソースコード
import java.util.*; public class Main { static int sum=0; static int[] omori; static boolean dfs(int now,int sum1,int kazu){ if(now==kazu){ if(sum1==sum/2){ return true; }else{ return false; } } if(dfs(now+1,sum1,kazu)) return true; if(dfs(now+1,sum1+omori[now],kazu)) return true; return false; } public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N=sc.nextInt(); omori = new int[N]; for(int i=0;i<N;i++){ int temp=sc.nextInt(); sum+=temp; omori[i]=temp; } if(!(sum%2==0)){ System.out.println("impossible"); return; } if(dfs(0,0,N)){ System.out.println("possible"); }else{ System.out.println("impossible"); } } }