結果

問題 No.993 青色
ユーザー da_louisda_louis
提出日時 2020-02-22 18:29:49
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 317 ms / 2,000 ms
コード長 147 bytes
コンパイル時間 11,582 ms
コンパイル使用メモリ 427,692 KB
実行使用メモリ 56,836 KB
最終ジャッジ日時 2024-10-09 20:41:02
合計ジャッジ時間 15,294 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 315 ms
56,712 KB
testcase_01 AC 315 ms
56,772 KB
testcase_02 AC 314 ms
56,828 KB
testcase_03 AC 312 ms
56,748 KB
testcase_04 AC 308 ms
56,748 KB
testcase_05 AC 317 ms
56,808 KB
testcase_06 AC 312 ms
56,772 KB
testcase_07 AC 315 ms
56,836 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    p993()
}

fun p993() {
    val s = readLine()!!

    val answer = s.replace("ao", "ki")

    println(answer)
}
0