結果

問題 No.4 おもりと天秤
ユーザー youthfuldays072youthfuldays072
提出日時 2018-05-04 12:08:30
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 570 bytes
コンパイル時間 1,954 ms
コンパイル使用メモリ 71,616 KB
実行使用メモリ 56,440 KB
最終ジャッジ日時 2023-09-10 09:32:28
合計ジャッジ時間 6,229 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
55,524 KB
testcase_01 AC 124 ms
55,704 KB
testcase_02 AC 136 ms
56,228 KB
testcase_03 AC 127 ms
55,948 KB
testcase_04 WA -
testcase_05 AC 141 ms
55,728 KB
testcase_06 AC 128 ms
55,564 KB
testcase_07 AC 141 ms
55,840 KB
testcase_08 AC 142 ms
55,576 KB
testcase_09 AC 145 ms
56,024 KB
testcase_10 WA -
testcase_11 AC 127 ms
56,144 KB
testcase_12 WA -
testcase_13 AC 125 ms
56,068 KB
testcase_14 WA -
testcase_15 AC 122 ms
55,864 KB
testcase_16 WA -
testcase_17 AC 123 ms
55,684 KB
testcase_18 AC 143 ms
56,332 KB
testcase_19 AC 144 ms
56,084 KB
testcase_20 AC 141 ms
55,472 KB
testcase_21 AC 142 ms
56,032 KB
testcase_22 AC 144 ms
56,032 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,0);

		int sum=0;

		dp[0]=1;

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

			for(int j=0;j<=10000;j++) {
				dp[j+buf]=dp[j];
			}


		}

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

	}

}



0