結果

問題 No.676 C0nvertPr0b1em
ユーザー バカらっくバカらっく
提出日時 2022-02-03 14:06:59
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 272 ms / 2,000 ms
コード長 144 bytes
コンパイル時間 11,387 ms
コンパイル使用メモリ 421,500 KB
実行使用メモリ 50,988 KB
最終ジャッジ日時 2024-06-11 09:54:58
合計ジャッジ時間 17,524 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 271 ms
50,536 KB
testcase_01 AC 255 ms
50,796 KB
testcase_02 AC 261 ms
50,820 KB
testcase_03 AC 260 ms
50,708 KB
testcase_04 AC 258 ms
50,708 KB
testcase_05 AC 261 ms
50,880 KB
testcase_06 AC 257 ms
50,820 KB
testcase_07 AC 259 ms
50,956 KB
testcase_08 AC 257 ms
50,716 KB
testcase_09 AC 257 ms
50,652 KB
testcase_10 AC 258 ms
50,964 KB
testcase_11 AC 268 ms
50,972 KB
testcase_12 AC 259 ms
50,776 KB
testcase_13 AC 258 ms
50,792 KB
testcase_14 AC 261 ms
50,908 KB
testcase_15 AC 259 ms
50,816 KB
testcase_16 AC 264 ms
50,736 KB
testcase_17 AC 260 ms
50,988 KB
testcase_18 AC 263 ms
50,844 KB
testcase_19 AC 258 ms
50,940 KB
testcase_20 AC 266 ms
50,796 KB
testcase_21 AC 258 ms
50,812 KB
testcase_22 AC 262 ms
50,816 KB
testcase_23 AC 262 ms
50,852 KB
testcase_24 AC 253 ms
50,860 KB
testcase_25 AC 261 ms
50,900 KB
testcase_26 AC 253 ms
50,880 KB
testcase_27 AC 272 ms
50,692 KB
testcase_28 AC 265 ms
50,952 KB
testcase_29 AC 260 ms
50,760 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    val s = readLine()!!
    println(s.replace('I', '1').replace('l', '1').replace('O','0').replace('o', '0'))
}
0