結果

問題 No.676 C0nvertPr0b1em
ユーザー 💕💖💞💕💖💞
提出日時 2018-05-06 22:32:40
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 338 ms / 2,000 ms
コード長 206 bytes
コンパイル時間 10,811 ms
コンパイル使用メモリ 430,072 KB
実行使用メモリ 55,396 KB
最終ジャッジ日時 2024-11-20 15:57:09
合計ジャッジ時間 22,049 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 323 ms
55,360 KB
testcase_01 AC 328 ms
55,204 KB
testcase_02 AC 331 ms
55,132 KB
testcase_03 AC 332 ms
55,064 KB
testcase_04 AC 333 ms
55,268 KB
testcase_05 AC 329 ms
55,028 KB
testcase_06 AC 333 ms
55,028 KB
testcase_07 AC 329 ms
55,032 KB
testcase_08 AC 327 ms
54,992 KB
testcase_09 AC 326 ms
55,288 KB
testcase_10 AC 332 ms
55,132 KB
testcase_11 AC 337 ms
55,368 KB
testcase_12 AC 334 ms
55,280 KB
testcase_13 AC 334 ms
55,180 KB
testcase_14 AC 330 ms
54,976 KB
testcase_15 AC 333 ms
55,096 KB
testcase_16 AC 334 ms
55,160 KB
testcase_17 AC 332 ms
55,312 KB
testcase_18 AC 325 ms
55,296 KB
testcase_19 AC 326 ms
55,396 KB
testcase_20 AC 337 ms
55,028 KB
testcase_21 AC 331 ms
55,320 KB
testcase_22 AC 338 ms
55,388 KB
testcase_23 AC 325 ms
55,008 KB
testcase_24 AC 328 ms
55,072 KB
testcase_25 AC 326 ms
55,184 KB
testcase_26 AC 329 ms
55,388 KB
testcase_27 AC 325 ms
55,276 KB
testcase_28 AC 338 ms
55,092 KB
testcase_29 AC 327 ms
55,192 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^

ソースコード

diff #

fun main(args:Array<String>) {
  var str = readLine()!!
  listOf( Pair("I", "1"), Pair("l", "1"), Pair("O", "0"), Pair("o", "0")  ).map {
    val (s, t) = it
    str = str.replace(s, t)
  }
  println(str)
}
0