結果

問題 No.725 木は明らかに森である
ユーザー Pump0129Pump0129
提出日時 2018-08-24 21:22:42
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 270 ms / 2,000 ms
コード長 133 bytes
コンパイル時間 10,274 ms
コンパイル使用メモリ 421,588 KB
実行使用メモリ 56,848 KB
最終ジャッジ日時 2024-04-30 19:08:56
合計ジャッジ時間 11,903 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 264 ms
56,696 KB
testcase_01 AC 260 ms
56,816 KB
testcase_02 AC 257 ms
56,744 KB
testcase_03 AC 266 ms
56,792 KB
testcase_04 AC 270 ms
56,828 KB
testcase_05 AC 262 ms
56,700 KB
testcase_06 AC 260 ms
56,756 KB
testcase_07 AC 268 ms
56,816 KB
testcase_08 AC 261 ms
56,848 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

package net.ipipip0129.kotlin.yukicoder

fun main(args: Array<String>) {
    println(readLine()!!.replace("treeone", "forest"))
}
0