結果

問題 No.4 おもりと天秤
ユーザー yuma25689yuma25689
提出日時 2015-11-03 14:18:09
言語 PHP
(8.3.4)
結果
AC  
実行時間 110 ms / 5,000 ms
コード長 1,016 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 30,916 KB
実行使用メモリ 31,504 KB
最終ジャッジ日時 2024-06-26 09:20:39
合計ジャッジ時間 2,919 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
31,244 KB
testcase_01 AC 45 ms
31,340 KB
testcase_02 AC 51 ms
30,868 KB
testcase_03 AC 48 ms
30,960 KB
testcase_04 AC 51 ms
31,120 KB
testcase_05 AC 109 ms
31,456 KB
testcase_06 AC 43 ms
31,080 KB
testcase_07 AC 110 ms
31,204 KB
testcase_08 AC 108 ms
31,320 KB
testcase_09 AC 110 ms
31,208 KB
testcase_10 AC 110 ms
31,412 KB
testcase_11 AC 46 ms
31,100 KB
testcase_12 AC 43 ms
31,040 KB
testcase_13 AC 43 ms
30,988 KB
testcase_14 AC 45 ms
31,340 KB
testcase_15 AC 43 ms
31,224 KB
testcase_16 AC 47 ms
31,504 KB
testcase_17 AC 46 ms
31,172 KB
testcase_18 AC 110 ms
31,404 KB
testcase_19 AC 109 ms
31,072 KB
testcase_20 AC 110 ms
31,272 KB
testcase_21 AC 109 ms
30,896 KB
testcase_22 AC 110 ms
31,492 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php

// 2 <= count <= 100
$count = trim(fgets(STDIN));
// 1 <= weight <= 100
$weight=explode(' ',trim(fgets(STDIN)));

//var_dump($weight);

const MAX=10000;
$CombinationOfThisWeightExist = array_fill(0,MAX,False);

$CombinationOfThisWeightExist[0] = True;
$sum = 0;
for( $i=0; $i<$count; $i++ )
{
	// 重りの数分ループ
	// 重りの合計値取得
	$sum += $weight[$i];
	// 重り毎に、その重りの内容ですべてのメモ配列を更新
	for( $j=MAX-1-$weight[$i]; 0<=$j; $j-- )
	{
		// すでにその組み合わせがある重さに、現在の重りを足した重さも、その組み合わせがあると考えられる
		$CombinationOfThisWeightExist[$j+$weight[$i]] |= $CombinationOfThisWeightExist[$j];
	}
}

//print($sum.PHP_EOL);
// for( $i < 0; $i < MAX; $i++ )
// {
// 	if( $CombinationOfThisWeightExist[$i] == True )
// 		print($i.PHP_EOL);
// }

if( $sum % 2 != 0 || $CombinationOfThisWeightExist[$sum / 2] == False )
	print('impossible'.PHP_EOL);
else
	print('possible'.PHP_EOL);
0