結果

問題 No.4 おもりと天秤
ユーザー GrenacheGrenache
提出日時 2015-07-01 10:57:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 203 ms / 5,000 ms
コード長 950 bytes
コンパイル時間 3,704 ms
コンパイル使用メモリ 75,748 KB
実行使用メモリ 56,448 KB
最終ジャッジ日時 2024-06-26 09:14:54
合計ジャッジ時間 8,359 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
53,912 KB
testcase_01 AC 135 ms
53,856 KB
testcase_02 AC 142 ms
54,008 KB
testcase_03 AC 141 ms
54,068 KB
testcase_04 AC 143 ms
54,060 KB
testcase_05 AC 192 ms
55,992 KB
testcase_06 AC 140 ms
53,660 KB
testcase_07 AC 190 ms
56,096 KB
testcase_08 AC 148 ms
54,132 KB
testcase_09 AC 150 ms
53,876 KB
testcase_10 AC 194 ms
56,184 KB
testcase_11 AC 139 ms
54,072 KB
testcase_12 AC 137 ms
53,868 KB
testcase_13 AC 137 ms
53,848 KB
testcase_14 AC 140 ms
53,944 KB
testcase_15 AC 138 ms
53,936 KB
testcase_16 AC 138 ms
53,872 KB
testcase_17 AC 141 ms
54,040 KB
testcase_18 AC 203 ms
56,304 KB
testcase_19 AC 190 ms
56,392 KB
testcase_20 AC 191 ms
56,256 KB
testcase_21 AC 190 ms
56,448 KB
testcase_22 AC 190 ms
55,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.HashSet;
import java.util.Scanner;
import java.util.Set;


public class Main_yukicoder4 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt();
        int[] w = new int[n];
        int sum = 0;
        for (int i = 0; i < n; i++) {
        	w[i] = sc.nextInt();
        	sum += w[i];
        }

        boolean flag = false;
        if (sum % 2 == 0) {
        	Set<Integer> hs = new HashSet<Integer>();
        	
        	for (int i = 0; i < n; i++) {
        		for (int e : hs.toArray(new Integer[0])) {
        			hs.add(w[i] + e);
        		}
        		hs.add(w[i]);
        		
        		if (hs.contains(sum / 2)) {
        			flag = true;
        			break;
        		}
        	}
        }

        if (flag) {
        	System.out.println("possible");
        } else {
        	System.out.println("impossible");
        }
        
        sc.close();
    }
}
0