結果

問題 No.4 おもりと天秤
ユーザー 37zigen37zigen
提出日時 2016-03-07 23:15:31
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 761 bytes
コンパイル時間 2,209 ms
コンパイル使用メモリ 77,464 KB
実行使用メモリ 54,388 KB
最終ジャッジ日時 2024-09-24 12:04:07
合計ジャッジ時間 6,205 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,032 KB
testcase_01 AC 132 ms
54,264 KB
testcase_02 AC 139 ms
54,324 KB
testcase_03 AC 135 ms
53,976 KB
testcase_04 AC 139 ms
54,012 KB
testcase_05 AC 150 ms
54,352 KB
testcase_06 AC 131 ms
54,184 KB
testcase_07 AC 149 ms
54,388 KB
testcase_08 AC 137 ms
54,188 KB
testcase_09 AC 150 ms
54,172 KB
testcase_10 AC 152 ms
54,128 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 131 ms
54,152 KB
testcase_14 WA -
testcase_15 AC 131 ms
54,116 KB
testcase_16 AC 134 ms
54,164 KB
testcase_17 AC 131 ms
54,252 KB
testcase_18 AC 147 ms
54,036 KB
testcase_19 AC 152 ms
53,972 KB
testcase_20 AC 149 ms
54,260 KB
testcase_21 AC 149 ms
54,216 KB
testcase_22 AC 150 ms
54,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter;
import java.util.Scanner;

public class Main {
	static int mod=1000003;
	public static void main(String[] args) throws Exception {
		PrintWriter pw=new PrintWriter(System.out);
		Scanner sc=new Scanner(System.in);
		
		int n=sc.nextInt();
		int sum=0;
		int[] w=new int[n];
		for(int i=0;i<n;i++){
			int tmp=sc.nextInt();
			sum+=tmp;
			w[i]=tmp;
		}
		if(sum%2!=0){
			pw.println("impossible");
			pw.close();
			return;
		}
		boolean[] check=new boolean[10001];
		check[0]=true;
		for(int i=0;i<n;i++){
			for(int j=0;j+w[i]<10001;j++){
				if(check[j]&&!check[j+w[i]]){
					check[j+w[i]]=true;
				}
			}
		}
		if(check[sum/2]){
			pw.print("possible");
		}else{
			pw.print("impossible");
		}
		pw.close();
		sc.close();
	} 
}
0