結果

問題 No.725 木は明らかに森である
ユーザー warashiwarashi
提出日時 2018-08-27 23:33:14
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 320 ms / 2,000 ms
コード長 187 bytes
コンパイル時間 13,545 ms
コンパイル使用メモリ 438,224 KB
実行使用メモリ 57,168 KB
最終ジャッジ日時 2024-11-20 16:43:56
合計ジャッジ時間 13,973 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 320 ms
57,008 KB
testcase_01 AC 316 ms
57,132 KB
testcase_02 AC 307 ms
56,968 KB
testcase_03 AC 316 ms
57,012 KB
testcase_04 AC 312 ms
57,012 KB
testcase_05 AC 318 ms
57,148 KB
testcase_06 AC 309 ms
57,168 KB
testcase_07 AC 318 ms
57,132 KB
testcase_08 AC 312 ms
56,968 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