結果

問題 No.4 おもりと天秤
ユーザー tentententen
提出日時 2020-11-18 16:53:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 146 ms / 5,000 ms
コード長 674 bytes
コンパイル時間 2,155 ms
コンパイル使用メモリ 74,500 KB
実行使用メモリ 54,260 KB
最終ジャッジ日時 2024-07-23 09:06:47
合計ジャッジ時間 5,906 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
53,868 KB
testcase_01 AC 123 ms
54,128 KB
testcase_02 AC 125 ms
54,152 KB
testcase_03 AC 125 ms
54,124 KB
testcase_04 AC 129 ms
54,172 KB
testcase_05 AC 145 ms
53,932 KB
testcase_06 AC 128 ms
53,984 KB
testcase_07 AC 141 ms
54,140 KB
testcase_08 AC 141 ms
54,064 KB
testcase_09 AC 141 ms
54,096 KB
testcase_10 AC 141 ms
54,232 KB
testcase_11 AC 127 ms
54,156 KB
testcase_12 AC 127 ms
54,068 KB
testcase_13 AC 127 ms
54,260 KB
testcase_14 AC 126 ms
53,904 KB
testcase_15 AC 127 ms
53,708 KB
testcase_16 AC 129 ms
54,152 KB
testcase_17 AC 126 ms
53,904 KB
testcase_18 AC 146 ms
54,168 KB
testcase_19 AC 144 ms
53,952 KB
testcase_20 AC 142 ms
54,028 KB
testcase_21 AC 146 ms
54,200 KB
testcase_22 AC 139 ms
53,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        boolean[] isPossible = new boolean[n * 100 + 1];
        isPossible[0] = true;
        int total = 0;
        for (int i = 0; i < n; i++) {
            int x = sc.nextInt();
            total += x;
            for (int j = i * 100; j >= 0 ; j--) {
                isPossible[j + x] |= isPossible[j];
            }
        }
        if (total % 2 == 1 || !isPossible[total / 2]) { 
            System.out.println("impossible");
        } else {
            System.out.println("possible");
        }
    }
}
0