結果

問題 No.725 木は明らかに森である
ユーザー warashiwarashi
提出日時 2018-08-27 23:33:14
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 309 ms / 2,000 ms
コード長 187 bytes
コンパイル時間 9,872 ms
コンパイル使用メモリ 433,216 KB
実行使用メモリ 57,252 KB
最終ジャッジ日時 2024-04-30 19:12:51
合計ジャッジ時間 13,426 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 300 ms
56,952 KB
testcase_01 AC 302 ms
57,124 KB
testcase_02 AC 300 ms
56,960 KB
testcase_03 AC 309 ms
56,928 KB
testcase_04 AC 308 ms
57,112 KB
testcase_05 AC 306 ms
57,252 KB
testcase_06 AC 299 ms
57,056 KB
testcase_07 AC 308 ms
57,084 KB
testcase_08 AC 299 ms
56,992 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

package family.warashi.yukicoder.no725

fun main(args: Array<String>) {
    System.`in`.bufferedReader().lineSequence().forEach {
        println(it.replace("treeone", "forest"))
    }
}
0