結果

問題 No.725 木は明らかに森である
ユーザー komkomhkomkomh
提出日時 2019-06-09 11:19:42
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 301 ms / 2,000 ms
コード長 122 bytes
コンパイル時間 10,119 ms
コンパイル使用メモリ 416,332 KB
実行使用メモリ 56,952 KB
最終ジャッジ日時 2024-04-30 20:57:09
合計ジャッジ時間 14,240 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 301 ms
56,796 KB
testcase_01 AC 300 ms
56,736 KB
testcase_02 AC 297 ms
56,892 KB
testcase_03 AC 299 ms
56,780 KB
testcase_04 AC 296 ms
56,780 KB
testcase_05 AC 297 ms
56,740 KB
testcase_06 AC 293 ms
56,836 KB
testcase_07 AC 294 ms
56,756 KB
testcase_08 AC 293 ms
56,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder

fun main() {
    val S = readLine()!!

    val ans = S.replace("treeone", "forest")
    println(ans)
}
0