結果

問題 No.4 おもりと天秤
ユーザー chocoruskchocorusk
提出日時 2020-10-03 08:05:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 5,000 ms
コード長 652 bytes
コンパイル時間 1,887 ms
コンパイル使用メモリ 75,536 KB
実行使用メモリ 54,468 KB
最終ジャッジ日時 2024-07-18 04:06:30
合計ジャッジ時間 5,657 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
54,192 KB
testcase_01 AC 116 ms
54,016 KB
testcase_02 AC 117 ms
53,952 KB
testcase_03 AC 124 ms
54,052 KB
testcase_04 AC 124 ms
54,176 KB
testcase_05 AC 132 ms
54,224 KB
testcase_06 AC 117 ms
54,236 KB
testcase_07 AC 127 ms
54,020 KB
testcase_08 AC 122 ms
54,220 KB
testcase_09 AC 130 ms
53,912 KB
testcase_10 AC 129 ms
53,964 KB
testcase_11 AC 119 ms
54,076 KB
testcase_12 AC 117 ms
53,912 KB
testcase_13 AC 116 ms
54,468 KB
testcase_14 AC 111 ms
53,004 KB
testcase_15 AC 121 ms
54,332 KB
testcase_16 AC 115 ms
54,084 KB
testcase_17 AC 98 ms
52,704 KB
testcase_18 AC 136 ms
54,348 KB
testcase_19 AC 126 ms
54,148 KB
testcase_20 AC 118 ms
53,424 KB
testcase_21 AC 122 ms
53,656 KB
testcase_22 AC 143 ms
54,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main{
	public static void main(String[] args) {
		Scanner scanner=new Scanner(System.in);
		PrintWriter out=new PrintWriter(System.out);
		int n=Integer.parseInt(scanner.next());
		int[] w=new int[101];
		for(int i=0; i<n; i++) {
			w[i]=Integer.parseInt(scanner.next());
		}
		boolean[] dp=new boolean[10010];
		dp[0]=true;
		int sum=0;
		for(int i=0; i<n; i++) {
			for(int j=sum; j>=0; j--) {
				if(dp[j]) {
					dp[j+w[i]]=true;
				}
			}
			sum+=w[i];
		}
		if(sum%2==0 && dp[sum/2]) {
			out.println("possible");
		}else {
			out.println("impossible");
		}
		out.flush();
	}
}
0