結果

問題 No.725 木は明らかに森である
ユーザー komkomhkomkomh
提出日時 2019-06-09 11:19:42
言語 Kotlin
(1.9.10)
結果
AC  
実行時間 285 ms / 2,000 ms
コード長 122 bytes
コンパイル時間 11,212 ms
コンパイル使用メモリ 404,780 KB
実行使用メモリ 52,840 KB
最終ジャッジ日時 2023-08-13 02:29:38
合計ジャッジ時間 14,598 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 284 ms
52,668 KB
testcase_01 AC 283 ms
52,792 KB
testcase_02 AC 284 ms
52,752 KB
testcase_03 AC 283 ms
52,816 KB
testcase_04 AC 285 ms
52,840 KB
testcase_05 AC 285 ms
52,804 KB
testcase_06 AC 281 ms
52,652 KB
testcase_07 AC 282 ms
52,524 KB
testcase_08 AC 281 ms
52,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder

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

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