結果

問題 No.4 おもりと天秤
ユーザー snicmakinosnicmakino
提出日時 2017-04-26 17:33:50
言語 PHP
(8.3.4)
結果
AC  
実行時間 60 ms / 5,000 ms
コード長 451 bytes
コンパイル時間 3,853 ms
コンパイル使用メモリ 31,504 KB
実行使用メモリ 31,252 KB
最終ジャッジ日時 2024-06-26 10:14:30
合計ジャッジ時間 2,018 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
30,872 KB
testcase_01 AC 48 ms
30,768 KB
testcase_02 AC 42 ms
30,972 KB
testcase_03 AC 41 ms
31,012 KB
testcase_04 AC 42 ms
30,864 KB
testcase_05 AC 59 ms
30,896 KB
testcase_06 AC 40 ms
31,072 KB
testcase_07 AC 59 ms
31,096 KB
testcase_08 AC 41 ms
31,084 KB
testcase_09 AC 52 ms
30,896 KB
testcase_10 AC 60 ms
31,252 KB
testcase_11 AC 41 ms
30,964 KB
testcase_12 AC 39 ms
31,132 KB
testcase_13 AC 40 ms
30,768 KB
testcase_14 AC 39 ms
30,952 KB
testcase_15 AC 39 ms
31,100 KB
testcase_16 AC 41 ms
30,968 KB
testcase_17 AC 39 ms
30,976 KB
testcase_18 AC 52 ms
31,140 KB
testcase_19 AC 56 ms
31,120 KB
testcase_20 AC 55 ms
31,204 KB
testcase_21 AC 56 ms
31,000 KB
testcase_22 AC 57 ms
31,100 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
// Here your code !
$count = trim(fgets(STDIN));
$weights = explode(' ', trim(fgets(STDIN)));
$sum = array_sum($weights);
if ($sum % 2 == 1) {
    echo 'impossible';
    exit;
}

$point = array_fill(0, $sum + 1, false);
$point[0] = true;

foreach ($weights as $weight) {
    for ($i = $sum; $i >= 0; $i--) {
        if ($point[$i]) {
            $point[$i + $weight] = true;
        }
    }
}
echo ($point[$sum / 2]) ? 'possible' : 'impossible';
0