結果

問題 No.993 青色
ユーザー da_louisda_louis
提出日時 2020-02-22 18:29:49
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 284 ms / 2,000 ms
コード長 147 bytes
コンパイル時間 11,079 ms
コンパイル使用メモリ 420,328 KB
実行使用メモリ 51,348 KB
最終ジャッジ日時 2024-04-18 02:58:53
合計ジャッジ時間 14,497 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 281 ms
51,072 KB
testcase_01 AC 284 ms
51,148 KB
testcase_02 AC 278 ms
51,304 KB
testcase_03 AC 277 ms
51,348 KB
testcase_04 AC 283 ms
50,840 KB
testcase_05 AC 283 ms
51,332 KB
testcase_06 AC 281 ms
51,060 KB
testcase_07 AC 283 ms
51,056 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