結果

問題 No.4 おもりと天秤
ユーザー holegumaholeguma
提出日時 2015-07-26 03:12:22
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 799 bytes
コンパイル時間 2,499 ms
コンパイル使用メモリ 74,328 KB
実行使用メモリ 55,364 KB
最終ジャッジ日時 2023-09-22 23:22:06
合計ジャッジ時間 10,417 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,124 KB
testcase_01 AC 42 ms
49,304 KB
testcase_02 AC 45 ms
49,492 KB
testcase_03 AC 43 ms
49,492 KB
testcase_04 AC 43 ms
49,176 KB
testcase_05 AC 44 ms
49,396 KB
testcase_06 AC 42 ms
49,252 KB
testcase_07 AC 43 ms
49,368 KB
testcase_08 AC 42 ms
49,496 KB
testcase_09 AC 44 ms
49,384 KB
testcase_10 AC 44 ms
49,496 KB
testcase_11 AC 42 ms
49,448 KB
testcase_12 AC 42 ms
49,360 KB
testcase_13 AC 42 ms
49,496 KB
testcase_14 AC 42 ms
49,320 KB
testcase_15 AC 42 ms
49,508 KB
testcase_16 AC 42 ms
49,184 KB
testcase_17 AC 43 ms
49,420 KB
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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,n-1,w)?"possible":"impossible");
}
}
private static boolean dfs(int sum,int now,final int[] w){
if(sum<0||now<0){
return false;
}
if(sum==0){
return true;
}
if(sum<w[now]){
return dfs(sum,now-1,w);
}
return dfs(sum-w[now],now-1,w)?true:dfs(sum,now-1,w)?true:false;
}
}
0