結果

問題 No.4 おもりと天秤
ユーザー shinwisteriashinwisteria
提出日時 2017-03-28 10:47:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 153 ms / 5,000 ms
コード長 872 bytes
コンパイル時間 3,419 ms
コンパイル使用メモリ 77,824 KB
実行使用メモリ 42,076 KB
最終ジャッジ日時 2024-06-26 10:13:38
合計ジャッジ時間 7,424 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,392 KB
testcase_01 AC 114 ms
40,452 KB
testcase_02 AC 129 ms
41,452 KB
testcase_03 AC 127 ms
41,412 KB
testcase_04 AC 132 ms
41,352 KB
testcase_05 AC 150 ms
41,924 KB
testcase_06 AC 126 ms
41,436 KB
testcase_07 AC 145 ms
41,268 KB
testcase_08 AC 130 ms
41,096 KB
testcase_09 AC 147 ms
41,804 KB
testcase_10 AC 149 ms
41,696 KB
testcase_11 AC 128 ms
41,564 KB
testcase_12 AC 129 ms
41,424 KB
testcase_13 AC 110 ms
40,516 KB
testcase_14 AC 128 ms
41,588 KB
testcase_15 AC 125 ms
41,196 KB
testcase_16 AC 127 ms
41,512 KB
testcase_17 AC 127 ms
41,100 KB
testcase_18 AC 146 ms
41,676 KB
testcase_19 AC 153 ms
41,656 KB
testcase_20 AC 149 ms
42,076 KB
testcase_21 AC 147 ms
41,476 KB
testcase_22 AC 150 ms
41,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class OmoritoTenbin {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int N = s.nextInt(),total = 0;
		int[] W = new int[N+1];
		W[0] = 0;
		for(int i = 1;i <= N ;i++){
			W[i] = s.nextInt();
			total += W[i];
		}
		s.close();
		Arrays.sort(W);
		if(total % 2 == 1){
			System.out.println("impossible");
		}else{
			total /=2;
			int[][] way = new int[total+1][2];
			way[0][0] = 1;
			for(int i = 0;i <= total;i++){
				for(int j = 1;j <= N;j++){
					if(i-W[j] >= 0 &&way[i-W[j]][0] == 1 && way[i-W[j]][1] < j){
						way[i][0] = 1;
						way[i][1] = j;
						break;
					}
				}
				//System.out.println(i + "  " + way[i][0] + "  " + way[i][1]);
			}
			if(way[total][0] == 1){
				System.out.println("possible");
			}else{
				System.out.println("impossible");
			}
		}
	}
}
0