結果

問題 No.4 おもりと天秤
ユーザー holegumaholeguma
提出日時 2015-07-26 03:24:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 84 ms / 5,000 ms
コード長 617 bytes
コンパイル時間 2,053 ms
コンパイル使用メモリ 75,368 KB
実行使用メモリ 51,292 KB
最終ジャッジ日時 2024-06-26 09:16:18
合計ジャッジ時間 4,397 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
50,232 KB
testcase_01 AC 56 ms
49,952 KB
testcase_02 AC 58 ms
49,968 KB
testcase_03 AC 56 ms
50,300 KB
testcase_04 AC 57 ms
50,080 KB
testcase_05 AC 84 ms
51,228 KB
testcase_06 AC 55 ms
50,256 KB
testcase_07 AC 82 ms
51,128 KB
testcase_08 AC 81 ms
50,840 KB
testcase_09 AC 83 ms
51,224 KB
testcase_10 AC 82 ms
51,292 KB
testcase_11 AC 55 ms
50,044 KB
testcase_12 AC 53 ms
50,172 KB
testcase_13 AC 55 ms
50,196 KB
testcase_14 AC 55 ms
49,784 KB
testcase_15 AC 54 ms
50,240 KB
testcase_16 AC 55 ms
50,120 KB
testcase_17 AC 56 ms
49,976 KB
testcase_18 AC 81 ms
51,176 KB
testcase_19 AC 83 ms
50,900 KB
testcase_20 AC 69 ms
50,540 KB
testcase_21 AC 81 ms
51,068 KB
testcase_22 AC 81 ms
50,724 KB
権限があれば一括ダウンロードができます

ソースコード

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[] dp=new int[10001];
dp[0]=1;
int total=0;
String[] values=br.readLine().split(" ");
for(int i=0;i<n;i++){
w[i]=Integer.parseInt(values[i]);
for(int j=10000;j>=0;j--){
if(dp[j]==1){
dp[j+w[i]]=1;
}
}
total+=w[i];
}
if(total%2==1){
System.out.println("impossible");
continue;
}
total/=2;
System.out.println(dp[total]==1?"possible":"impossible");
}
}
}
0