結果

問題 No.993 青色
ユーザー Respect2DRespect2D
提出日時 2020-02-21 21:21:58
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 349 ms / 2,000 ms
コード長 130 bytes
コンパイル時間 10,862 ms
コンパイル使用メモリ 429,140 KB
実行使用メモリ 52,656 KB
最終ジャッジ日時 2024-04-17 07:03:09
合計ジャッジ時間 14,513 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 341 ms
52,604 KB
testcase_01 AC 334 ms
52,636 KB
testcase_02 AC 342 ms
52,656 KB
testcase_03 AC 342 ms
52,464 KB
testcase_04 AC 338 ms
52,536 KB
testcase_05 AC 349 ms
52,652 KB
testcase_06 AC 340 ms
52,600 KB
testcase_07 AC 345 ms
52,624 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

import java.util.*

fun main(args: Array<String>) {
    val sc = Scanner(System.`in`)
    println(sc.next().replace("ao", "ki"))
}
0