結果
問題 | No.4 おもりと天秤 |
ユーザー | 綾地寧々 |
提出日時 | 2015-05-23 15:44:26 |
言語 | PHP (8.3.4) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 769 bytes |
コンパイル時間 | 2,442 ms |
コンパイル使用メモリ | 31,888 KB |
実行使用メモリ | 38,964 KB |
最終ジャッジ日時 | 2024-07-06 06:20:48 |
合計ジャッジ時間 | 7,745 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 34 ms
32,144 KB |
testcase_01 | AC | 45 ms
32,272 KB |
testcase_02 | AC | 45 ms
32,400 KB |
testcase_03 | AC | 39 ms
32,148 KB |
testcase_04 | AC | 35 ms
32,400 KB |
testcase_05 | AC | 38 ms
32,216 KB |
testcase_06 | AC | 40 ms
32,276 KB |
testcase_07 | AC | 39 ms
32,272 KB |
testcase_08 | AC | 36 ms
32,268 KB |
testcase_09 | AC | 34 ms
32,400 KB |
testcase_10 | AC | 36 ms
32,400 KB |
testcase_11 | AC | 34 ms
32,400 KB |
testcase_12 | AC | 34 ms
32,272 KB |
testcase_13 | AC | 34 ms
32,276 KB |
testcase_14 | AC | 35 ms
32,344 KB |
testcase_15 | AC | 36 ms
32,144 KB |
testcase_16 | AC | 34 ms
32,144 KB |
testcase_17 | AC | 36 ms
32,276 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 ( put_weight(0,0,0) ) { 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; }