結果

問題 No.4 おもりと天秤
ユーザー youthfuldays072youthfuldays072
提出日時 2018-05-04 13:05:11
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 605 bytes
コンパイル時間 2,125 ms
コンパイル使用メモリ 74,284 KB
実行使用メモリ 41,660 KB
最終ジャッジ日時 2024-06-28 01:01:38
合計ジャッジ時間 6,591 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,412 KB
testcase_01 AC 133 ms
41,068 KB
testcase_02 AC 138 ms
41,316 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 132 ms
41,004 KB
testcase_07 WA -
testcase_08 AC 145 ms
41,660 KB
testcase_09 AC 151 ms
41,400 KB
testcase_10 WA -
testcase_11 AC 136 ms
41,476 KB
testcase_12 AC 131 ms
41,048 KB
testcase_13 AC 131 ms
41,368 KB
testcase_14 AC 135 ms
41,412 KB
testcase_15 AC 120 ms
40,296 KB
testcase_16 WA -
testcase_17 AC 136 ms
41,256 KB
testcase_18 AC 155 ms
41,608 KB
testcase_19 AC 149 ms
41,448 KB
testcase_20 AC 146 ms
41,644 KB
testcase_21 AC 151 ms
41,036 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

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,0);

		int sum=0;

		dp[0]=1;

		for(int i=0;i<n;i++) {
			int buf=sc.nextInt();
			sum+=buf;

			for(int j=10100;j>=0;j--) {
				
				if(j+buf<=10100) {
					dp[j+buf]=dp[j];
				}
			}


		}

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

	}

}



0