結果

問題 No.4 おもりと天秤
ユーザー ねずねず
提出日時 2018-01-28 10:50:33
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 458 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 30,772 KB
実行使用メモリ 46,604 KB
最終ジャッジ日時 2024-06-09 08:19:12
合計ジャッジ時間 2,386 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
31,120 KB
testcase_01 AC 40 ms
31,368 KB
testcase_02 AC 41 ms
30,888 KB
testcase_03 WA -
testcase_04 AC 42 ms
31,020 KB
testcase_05 AC 87 ms
39,564 KB
testcase_06 AC 40 ms
30,920 KB
testcase_07 AC 84 ms
39,312 KB
testcase_08 AC 43 ms
31,348 KB
testcase_09 AC 75 ms
46,604 KB
testcase_10 AC 89 ms
40,588 KB
testcase_11 AC 41 ms
30,976 KB
testcase_12 AC 41 ms
31,112 KB
testcase_13 AC 39 ms
31,040 KB
testcase_14 AC 38 ms
31,268 KB
testcase_15 AC 39 ms
31,168 KB
testcase_16 WA -
testcase_17 AC 39 ms
31,268 KB
testcase_18 AC 71 ms
39,184 KB
testcase_19 AC 82 ms
38,100 KB
testcase_20 AC 81 ms
38,284 KB
testcase_21 AC 80 ms
37,900 KB
testcase_22 AC 82 ms
38,412 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$n = trim(fgets(STDIN));
$weights = explode(" ", trim(fgets(STDIN)));
$sum = array_sum($weights);
$dp = array_fill(0, $n, array_fill(0, $sum + 1, false));
$dp[0][$weights[0]] = true;
for ($i = 1; $i < $n; $i++) {
	$w = $weights[$i];
	for ($j = 0; $j <= $sum; $j++) {
		if (!$dp[$i - 1][$j]) continue;
		if ($j + $w <= $sum) $dp[$i][$j + $w] = true;
		if ($j - $w >= 0)   $dp[$i][$j - $w] = true;
	}
}
echo $dp[$n - 1][0] ? "possible" : "impossible";
?>
0