結果
問題 | No.4 おもりと天秤 |
ユーザー | 綾地寧々 |
提出日時 | 2016-08-09 16:59:59 |
言語 | PHP (8.3.4) |
結果 |
WA
|
実行時間 | - |
コード長 | 810 bytes |
コンパイル時間 | 293 ms |
コンパイル使用メモリ | 31,040 KB |
実行使用メモリ | 35,728 KB |
最終ジャッジ日時 | 2024-11-07 08:21:29 |
合計ジャッジ時間 | 8,093 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 45 ms
30,940 KB |
testcase_01 | AC | 43 ms
30,904 KB |
testcase_02 | AC | 47 ms
31,216 KB |
testcase_03 | WA | - |
testcase_04 | AC | 43 ms
30,940 KB |
testcase_05 | AC | 42 ms
31,324 KB |
testcase_06 | AC | 43 ms
30,944 KB |
testcase_07 | AC | 42 ms
31,260 KB |
testcase_08 | AC | 42 ms
31,216 KB |
testcase_09 | AC | 43 ms
31,136 KB |
testcase_10 | AC | 43 ms
31,280 KB |
testcase_11 | AC | 42 ms
31,048 KB |
testcase_12 | AC | 43 ms
30,748 KB |
testcase_13 | AC | 42 ms
31,176 KB |
testcase_14 | AC | 42 ms
31,104 KB |
testcase_15 | AC | 43 ms
31,104 KB |
testcase_16 | WA | - |
testcase_17 | AC | 43 ms
31,144 KB |
testcase_18 | TLE | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?php $n = trim(fgets(STDIN)); $w_array = explode(" ", trim(fgets(STDIN))); rsort($w_array); $w_target = array_sum($w_array); if ( $w_target % 2 ) { echo 'impossible'.PHP_EOL; exit(0); } $w_target /= 2; if ( ($w_array[0] == $w_target) || put_weight($w_array[0],1,1) ) { echo 'possible'.PHP_EOL; } else { echo 'impossible'.PHP_EOL; } function put_weight ( $put, $w_index, $w_count ) { global $w_array, $w_target, $n; if ( ($w_count >= $n) || ($w_index >= $n) ) { return FALSE; } if ( ($put + $w_array[$w_index]) > $w_target ) { return FALSE; } if ( ($put + $w_array[$w_index]) == $w_target ) { return TRUE; } $put += $w_array[$w_index]; $ret = FALSE; for ( $i=$w_index+1; $i<$n; $i++ ) { $ret = put_weight($put, $i, $w_count+1); if ( $ret === TRUE ) { break; } } return $ret; }