結果

問題 No.4 おもりと天秤
ユーザー DevbotBotDevbotBot
提出日時 2015-07-17 13:29:44
言語 PHP
(8.3.4)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 368 bytes
コンパイル時間 2,963 ms
コンパイル使用メモリ 31,636 KB
実行使用メモリ 32,404 KB
最終ジャッジ日時 2024-06-26 09:15:03
合計ジャッジ時間 5,222 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
31,040 KB
testcase_01 AC 42 ms
31,356 KB
testcase_02 AC 43 ms
31,076 KB
testcase_03 AC 43 ms
31,260 KB
testcase_04 AC 45 ms
31,140 KB
testcase_05 AC 65 ms
31,436 KB
testcase_06 AC 43 ms
31,464 KB
testcase_07 AC 65 ms
31,272 KB
testcase_08 AC 44 ms
31,168 KB
testcase_09 WA -
testcase_10 AC 67 ms
31,520 KB
testcase_11 AC 44 ms
31,076 KB
testcase_12 AC 43 ms
30,908 KB
testcase_13 AC 43 ms
31,088 KB
testcase_14 AC 42 ms
31,116 KB
testcase_15 AC 43 ms
30,964 KB
testcase_16 AC 42 ms
31,412 KB
testcase_17 AC 42 ms
30,956 KB
testcase_18 AC 57 ms
31,276 KB
testcase_19 AC 62 ms
31,520 KB
testcase_20 AC 62 ms
30,872 KB
testcase_21 AC 60 ms
31,188 KB
testcase_22 AC 61 ms
31,020 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$n = trim(fgets(STDIN));
$v = explode(' ', (trim(fgets(STDIN))));
$sum = array_sum($v);
$dp=array_fill(0,10000,0);
$dp[0] = $v[0];
for ($i=0; $i < $n-1; $i++){
	for ($j=$sum -$dp[$i]; $j> -1; $j--){
		if ($dp[$j] > 0){
			$dp[$j + $v[$i]] = 1;
		}
	}
}
if ($sum%2 == 0 and $dp[floor($sum/2)]){
	echo 'possible' . PHP_EOL;
} else {
	echo 'impossible' . PHP_EOL;
}
0