結果

問題 No.4 おもりと天秤
ユーザー papinianuspapinianus
提出日時 2016-07-29 13:05:17
言語 PHP
(8.3.4)
結果
TLE  
実行時間 -
コード長 638 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 32,148 KB
実行使用メモリ 38,964 KB
最終ジャッジ日時 2024-11-06 18:20:57
合計ジャッジ時間 7,721 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
32,400 KB
testcase_01 AC 41 ms
32,020 KB
testcase_02 AC 75 ms
32,400 KB
testcase_03 AC 40 ms
32,276 KB
testcase_04 AC 40 ms
32,400 KB
testcase_05 AC 42 ms
32,404 KB
testcase_06 AC 42 ms
32,344 KB
testcase_07 AC 41 ms
32,400 KB
testcase_08 AC 43 ms
32,276 KB
testcase_09 AC 40 ms
32,400 KB
testcase_10 AC 41 ms
32,528 KB
testcase_11 AC 41 ms
32,400 KB
testcase_12 AC 41 ms
32,276 KB
testcase_13 AC 41 ms
32,404 KB
testcase_14 AC 41 ms
32,528 KB
testcase_15 AC 41 ms
32,272 KB
testcase_16 AC 41 ms
32,272 KB
testcase_17 AC 40 ms
32,400 KB
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$num = trim(fgets(STDIN));
$nums = explode(" ", trim(fgets(STDIN)));
$sum = array_sum($nums);
if($sum%2 == 0) {
    $halfSum = $sum/2;
    rsort($nums);
    echo getCombination($halfSum, $nums)?"possible":"impossible";
} else {
    echo "impossible";
}
echo PHP_EOL;

function getCombination($target, $nums = []) {
    if(count($nums) == 0) {
        return false;
    } else if($nums[0] == $target) {
        return true;
    }
    if($target > $nums[0]) {
        if(getCombination($target-$nums[0], array_slice($nums,1))) {
            return true;
        }
    }
        return getCombination($target, array_slice($nums, 1));
}
0