結果

問題 No.4 おもりと天秤
ユーザー shinwisteriashinwisteria
提出日時 2017-03-26 20:24:16
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,171 bytes
コンパイル時間 4,122 ms
コンパイル使用メモリ 81,400 KB
実行使用メモリ 54,392 KB
最終ジャッジ日時 2024-07-06 06:33:05
合計ジャッジ時間 6,793 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
53,924 KB
testcase_01 AC 112 ms
54,248 KB
testcase_02 AC 107 ms
53,072 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 131 ms
53,844 KB
testcase_06 AC 103 ms
53,472 KB
testcase_07 AC 136 ms
54,212 KB
testcase_08 AC 124 ms
54,352 KB
testcase_09 AC 126 ms
54,128 KB
testcase_10 AC 134 ms
54,220 KB
testcase_11 AC 104 ms
52,876 KB
testcase_12 AC 113 ms
54,276 KB
testcase_13 AC 114 ms
53,908 KB
testcase_14 AC 124 ms
53,944 KB
testcase_15 AC 122 ms
53,760 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 140 ms
54,364 KB
testcase_19 AC 130 ms
53,952 KB
testcase_20 AC 131 ms
53,972 KB
testcase_21 AC 142 ms
54,088 KB
testcase_22 AC 128 ms
53,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayDeque;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Deque;
import java.util.Scanner;

public class OmoritoTenbin {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int N = s.nextInt(),rest = 0;
		int[] W = new int[N];
		for(int i = 0;i < N ;i++){
			W[i] = s.nextInt();
			rest += W[i];
		}
		s.close();
		Arrays.sort(W);
		int kw = 0;
		ArrayList<Integer> list = new ArrayList<>();
		if(rest%2 == 1){
			System.out.println("impossible");
		}else{
			rest /=2;
			Deque<Integer> stack = new ArrayDeque<>();
			for(int i :W){
				stack.push(i);
				list.add(i);
			}
			while(stack.size() != 0){
				int w = stack.pop();
				//System.out.println(stack);
				if(rest-w == 0){
					System.out.println("possible");
					break;
				}else if(rest-w > 0 && rest-w-list.get(0) >= 0){
					for(int i = 0;i < list.indexOf(w);i++){
						stack.push(list.get(i));
					}
					rest -= w;
					kw = w;
					//System.out.println(rest + "  " + w);
				}else if(w == list.get(0) && rest - w != 0){
					rest += kw;
				}
				if(stack.size() == 0){
					System.out.println("impossible");
				}
			}
		}
	}
}
0