結果

問題 No.676 C0nvertPr0b1em
ユーザー バカらっくバカらっく
提出日時 2022-02-03 14:06:59
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 279 ms / 2,000 ms
コード長 144 bytes
コンパイル時間 10,968 ms
コンパイル使用メモリ 413,728 KB
実行使用メモリ 52,824 KB
最終ジャッジ日時 2023-09-02 03:16:30
合計ジャッジ時間 20,579 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 273 ms
52,736 KB
testcase_01 AC 274 ms
52,540 KB
testcase_02 AC 277 ms
52,592 KB
testcase_03 AC 272 ms
52,756 KB
testcase_04 AC 274 ms
52,748 KB
testcase_05 AC 273 ms
52,740 KB
testcase_06 AC 275 ms
52,684 KB
testcase_07 AC 277 ms
52,680 KB
testcase_08 AC 275 ms
52,800 KB
testcase_09 AC 271 ms
52,688 KB
testcase_10 AC 271 ms
52,756 KB
testcase_11 AC 277 ms
52,800 KB
testcase_12 AC 277 ms
52,796 KB
testcase_13 AC 274 ms
52,692 KB
testcase_14 AC 275 ms
52,672 KB
testcase_15 AC 276 ms
52,732 KB
testcase_16 AC 276 ms
52,704 KB
testcase_17 AC 274 ms
52,760 KB
testcase_18 AC 276 ms
52,640 KB
testcase_19 AC 273 ms
52,792 KB
testcase_20 AC 271 ms
52,684 KB
testcase_21 AC 270 ms
52,744 KB
testcase_22 AC 279 ms
52,696 KB
testcase_23 AC 272 ms
52,824 KB
testcase_24 AC 269 ms
52,544 KB
testcase_25 AC 270 ms
52,728 KB
testcase_26 AC 264 ms
52,704 KB
testcase_27 AC 264 ms
52,696 KB
testcase_28 AC 269 ms
52,756 KB
testcase_29 AC 271 ms
52,740 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