結果

問題 No.725 木は明らかに森である
ユーザー _Clay_____Clay____
提出日時 2018-09-11 22:05:59
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 20 ms / 2,000 ms
コード長 152 bytes
コンパイル時間 77 ms
コンパイル使用メモリ 5,328 KB
実行使用メモリ 12,256 KB
最終ジャッジ日時 2023-09-06 06:27:44
合計ジャッジ時間 1,885 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
12,168 KB
testcase_01 AC 19 ms
12,256 KB
testcase_02 AC 20 ms
11,916 KB
testcase_03 AC 19 ms
12,084 KB
testcase_04 AC 18 ms
11,916 KB
testcase_05 AC 19 ms
12,004 KB
testcase_06 AC 19 ms
12,224 KB
testcase_07 AC 19 ms
12,188 KB
testcase_08 AC 19 ms
12,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(use srfi-13)
(display 
    (regexp-replace-all 
        #/treeone/ 
        (read-line 
            (standard-input-port))
        "forest"))
(newline)
0