結果

問題 No.4 おもりと天秤
ユーザー holegumaholeguma
提出日時 2015-07-26 02:43:40
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 721 bytes
コンパイル時間 2,255 ms
コンパイル使用メモリ 76,404 KB
実行使用メモリ 42,272 KB
最終ジャッジ日時 2024-07-08 13:58:05
合計ジャッジ時間 9,399 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
36,728 KB
testcase_01 AC 48 ms
37,108 KB
testcase_02 AC 50 ms
36,944 KB
testcase_03 AC 48 ms
36,936 KB
testcase_04 AC 50 ms
37,052 KB
testcase_05 AC 48 ms
36,644 KB
testcase_06 AC 49 ms
37,044 KB
testcase_07 AC 48 ms
36,900 KB
testcase_08 AC 49 ms
37,048 KB
testcase_09 AC 49 ms
36,768 KB
testcase_10 AC 51 ms
36,920 KB
testcase_11 AC 48 ms
36,956 KB
testcase_12 AC 49 ms
36,636 KB
testcase_13 AC 47 ms
36,940 KB
testcase_14 AC 47 ms
36,952 KB
testcase_15 AC 48 ms
36,640 KB
testcase_16 AC 49 ms
36,980 KB
testcase_17 AC 50 ms
36,632 KB
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;

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];
}
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;
}
}
0