結果

問題 No.4 おもりと天秤
ユーザー youthfuldays072youthfuldays072
提出日時 2018-05-04 11:03:29
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 565 bytes
コンパイル時間 1,945 ms
コンパイル使用メモリ 74,968 KB
実行使用メモリ 54,304 KB
最終ジャッジ日時 2024-06-28 00:59:26
合計ジャッジ時間 5,923 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,368 KB
testcase_01 AC 128 ms
41,356 KB
testcase_02 WA -
testcase_03 AC 131 ms
41,268 KB
testcase_04 AC 137 ms
41,316 KB
testcase_05 AC 142 ms
41,384 KB
testcase_06 WA -
testcase_07 AC 143 ms
41,216 KB
testcase_08 AC 145 ms
41,584 KB
testcase_09 AC 146 ms
41,624 KB
testcase_10 AC 145 ms
41,728 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 129 ms
41,088 KB
testcase_17 AC 115 ms
41,216 KB
testcase_18 WA -
testcase_19 AC 152 ms
41,252 KB
testcase_20 AC 148 ms
41,512 KB
testcase_21 AC 143 ms
41,388 KB
testcase_22 AC 146 ms
41,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main{

	public static void main(String[] args) {
		Main main=new Main();
		main.run();
	}

	void run() {

		Scanner sc=new Scanner(System.in);

		int n=sc.nextInt();





		int[] dp= new int[10101];
		
		Arrays.fill(dp,1);
		
		int sum=0;


		for(int i=0;i<n;i++) {
			int buf=sc.nextInt();
			sum+=buf;
			
			for(int j=10000;j>0;j--) {
				dp[j+buf]+=dp[j];
			}

		}

		if(sum%2==1 || dp[sum/2]==1) {
			System.out.println("impossible");
		}else {
			System.out.println("possible");
		}

	}

}



0