結果

問題 No.4 おもりと天秤
ユーザー yuppe19 😺yuppe19 😺
提出日時 2015-04-21 22:04:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 152 ms / 5,000 ms
コード長 755 bytes
コンパイル時間 2,609 ms
コンパイル使用メモリ 79,380 KB
実行使用メモリ 41,712 KB
最終ジャッジ日時 2024-06-26 09:11:09
合計ジャッジ時間 6,742 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
41,376 KB
testcase_01 AC 141 ms
41,096 KB
testcase_02 AC 140 ms
41,292 KB
testcase_03 AC 138 ms
41,128 KB
testcase_04 AC 126 ms
40,312 KB
testcase_05 AC 152 ms
41,712 KB
testcase_06 AC 141 ms
41,564 KB
testcase_07 AC 149 ms
41,476 KB
testcase_08 AC 141 ms
41,300 KB
testcase_09 AC 149 ms
41,648 KB
testcase_10 AC 149 ms
41,500 KB
testcase_11 AC 142 ms
41,400 KB
testcase_12 AC 128 ms
41,300 KB
testcase_13 AC 139 ms
41,348 KB
testcase_14 AC 140 ms
41,456 KB
testcase_15 AC 143 ms
41,496 KB
testcase_16 AC 140 ms
41,212 KB
testcase_17 AC 144 ms
41,232 KB
testcase_18 AC 152 ms
41,188 KB
testcase_19 AC 150 ms
41,516 KB
testcase_20 AC 151 ms
41,416 KB
testcase_21 AC 149 ms
41,488 KB
testcase_22 AC 151 ms
41,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.*;

public class Main {
    private void solve() {
        Scanner sc = new Scanner(System.in);
        int n = Integer.parseInt(sc.nextLine());
        int[] ws = Stream.of(sc.nextLine().split(" "))
                              .mapToInt(Integer::parseInt)
                              .toArray();
        int sum = Arrays.stream(ws).sum();
        boolean[] ok = new boolean[sum+1];
        ok[0] = true;
        for(int w : ws) {
            for(int i=sum; i>=0; i--) {
                if(ok[i]) { ok[i+w] = true; }
            }
        }
        System.out.println(ok[sum/2] && sum%2==0 ? "possible" : "impossible");
    }

    public static void main(String[] args) {
        new Main().solve();
    }
}
0