結果

問題 No.4 おもりと天秤
ユーザー shinwisteriashinwisteria
提出日時 2017-03-26 19:30:41
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,027 bytes
コンパイル時間 2,842 ms
コンパイル使用メモリ 78,276 KB
実行使用メモリ 53,896 KB
最終ジャッジ日時 2024-07-06 06:32:32
合計ジャッジ時間 6,018 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
53,896 KB
testcase_01 AC 95 ms
52,976 KB
testcase_02 AC 100 ms
41,516 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 101 ms
41,032 KB
testcase_07 WA -
testcase_08 AC 120 ms
41,968 KB
testcase_09 AC 113 ms
41,424 KB
testcase_10 AC 106 ms
41,624 KB
testcase_11 AC 101 ms
41,016 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 92 ms
40,444 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 99 ms
41,500 KB
testcase_18 AC 107 ms
41,560 KB
testcase_19 AC 110 ms
41,168 KB
testcase_20 AC 110 ms
41,460 KB
testcase_21 AC 111 ms
41,232 KB
testcase_22 AC 109 ms
41,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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][2];
		for(int i = 0;i < N ;i++){
			W[i][0] = s.nextInt();
			rest += W[i][0];
			W[i][1] = 1;
		}
		s.close();
		if(rest%2 == 1){
			System.out.println("impossible");
		}else{
			rest /=2;
			int near = rest,k = 0;
			for(int i = 0;i < N;i++){
				if(W[i][1] != 0 &&Math.abs(near) > Math.abs(rest - W[i][0])){
					near = rest - W[i][0];
					k = i;
				}
				rest = Math.abs(near);
				W[k][1] = 0;
			}
			if(near == 0){
				System.out.println("possible");
			}else if(near < 0){
				for(int i = 0;i < N;i++){
					if(W[i][1] == 0){
						for(int j = i+1;j<N;j++){
							if(W[i][1] == 1 &&(W[i][0]+near == W[j][0] ||W[i][0] == near + W[j][0])){
								near = 0;
								break;
							}
						}
					}
					if(near == 0){
						break;
					}
				}
				if(near != 0){
					System.out.println("impossible");
				}
			}			
		}
	}
}
0