結果

問題 No.4 おもりと天秤
ユーザー 綾地寧々綾地寧々
提出日時 2017-10-02 17:09:28
言語 PHP
(8.3.4)
結果
AC  
実行時間 64 ms / 5,000 ms
コード長 581 bytes
コンパイル時間 2,777 ms
コンパイル使用メモリ 31,760 KB
実行使用メモリ 31,244 KB
最終ジャッジ日時 2024-06-26 10:23:18
合計ジャッジ時間 2,172 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
30,980 KB
testcase_01 AC 42 ms
30,772 KB
testcase_02 AC 43 ms
30,700 KB
testcase_03 AC 41 ms
30,756 KB
testcase_04 AC 42 ms
30,808 KB
testcase_05 AC 62 ms
31,116 KB
testcase_06 AC 42 ms
31,088 KB
testcase_07 AC 61 ms
31,116 KB
testcase_08 AC 41 ms
30,440 KB
testcase_09 AC 41 ms
30,728 KB
testcase_10 AC 64 ms
31,116 KB
testcase_11 AC 41 ms
30,928 KB
testcase_12 AC 41 ms
30,996 KB
testcase_13 AC 41 ms
30,748 KB
testcase_14 AC 41 ms
30,808 KB
testcase_15 AC 41 ms
30,676 KB
testcase_16 AC 41 ms
30,972 KB
testcase_17 AC 42 ms
30,608 KB
testcase_18 AC 51 ms
31,104 KB
testcase_19 AC 60 ms
31,116 KB
testcase_20 AC 59 ms
30,988 KB
testcase_21 AC 59 ms
30,864 KB
testcase_22 AC 59 ms
31,244 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$n = trim(fgets(STDIN));
$w_array = explode(" ",trim(fgets(STDIN)));

// 合計値が偶数でないなら組み合わせはないので即終了
$w_total = array_sum($w_array);
if ( $w_total % 2 ) {
	echo 'impossible'.PHP_EOL;
	return 0;
}

$dp = array(0=>TRUE);
for ( $i = 0; $i < count($w_array); $i++ ) {
	foreach ( $dp as $weight => $value ) {
		if ( $value === TRUE ) {
			$dp[$weight+$w_array[$i]] = TRUE;
		}
	}
}

$w_target = $w_total / 2;

if ( isset($dp[$w_target]) && ($dp[$w_target] === TRUE) ) {
	echo 'possible'.PHP_EOL;
}
else {
	echo 'impossible'.PHP_EOL;
}
0