結果

問題 No.725 木は明らかに森である
ユーザー ayaaya
提出日時 2019-08-06 10:09:29
言語 PHP
(843.2)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 95 bytes
コンパイル時間 71 ms
コンパイル使用メモリ 30,824 KB
実行使用メモリ 31,524 KB
最終ジャッジ日時 2024-07-18 13:51:42
合計ジャッジ時間 804 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
31,008 KB
testcase_01 AC 35 ms
31,184 KB
testcase_02 AC 35 ms
31,164 KB
testcase_03 AC 35 ms
31,292 KB
testcase_04 AC 33 ms
31,336 KB
testcase_05 AC 34 ms
31,284 KB
testcase_06 AC 39 ms
31,524 KB
testcase_07 AC 34 ms
31,364 KB
testcase_08 AC 34 ms
31,416 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$input=trim(fgets(STDIN));
$input=preg_replace("/treeone/","forest",$input);
echo $input;
0