結果
問題 | No.193 筒の数式 |
ユーザー | masachaco |
提出日時 | 2015-04-27 04:20:19 |
言語 | PHP (8.3.4) |
結果 |
AC
|
実行時間 | 46 ms / 1,000 ms |
コード長 | 751 bytes |
コンパイル時間 | 70 ms |
コンパイル使用メモリ | 32,016 KB |
実行使用メモリ | 31,260 KB |
最終ジャッジ日時 | 2024-07-05 03:30:48 |
合計ジャッジ時間 | 1,634 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 46 ms
30,844 KB |
testcase_01 | AC | 43 ms
31,248 KB |
testcase_02 | AC | 42 ms
30,716 KB |
testcase_03 | AC | 42 ms
30,940 KB |
testcase_04 | AC | 42 ms
30,848 KB |
testcase_05 | AC | 42 ms
31,172 KB |
testcase_06 | AC | 42 ms
30,928 KB |
testcase_07 | AC | 42 ms
31,016 KB |
testcase_08 | AC | 41 ms
30,948 KB |
testcase_09 | AC | 42 ms
31,112 KB |
testcase_10 | AC | 42 ms
30,908 KB |
testcase_11 | AC | 42 ms
31,088 KB |
testcase_12 | AC | 42 ms
31,164 KB |
testcase_13 | AC | 41 ms
30,856 KB |
testcase_14 | AC | 41 ms
30,604 KB |
testcase_15 | AC | 41 ms
31,260 KB |
testcase_16 | AC | 40 ms
30,976 KB |
testcase_17 | AC | 41 ms
31,180 KB |
testcase_18 | AC | 41 ms
30,984 KB |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?php $stdin = trim(fgets(STDIN)); $n = strlen($stdin); $ans = null; for ($i = 0; $i < $n ;$i++){ $func = $stdin; if($i!=0){ $func1 = substr($stdin ,0,$i); $func2 = substr($stdin ,$i,$n-$i); $func = $func2.$func1; } $s=$func[0]; $e = $func[$n-1]; if($s==='+'||$s==='-'||$e==='+'||$e==='-'){ continue; } $result = ""; $func = preg_replace('(^0+)','',$func); $func = preg_replace('(^\+)','0+',$func); $func = preg_replace('(^\-)','0-',$func); $func = preg_replace('(\+0+$)','+a',$func); $func = preg_replace('(\-0+$)','-a',$func); $func = preg_replace('(\+0+)','+',$func); $func = preg_replace('(\-0+)','-',$func); $func = preg_replace('(a)','0',$func); eval('$result = '.$func.';'); if ($ans==null || $ans < $result){ $ans = $result; } } echo $ans;