結果

問題 No.1335 1337
ユーザー face4face4
提出日時 2021-04-11 00:01:38
言語 Kotlin
(2.1.0)
結果
WA  
実行時間 -
コード長 169 bytes
コンパイル時間 10,171 ms
コンパイル使用メモリ 430,780 KB
実行使用メモリ 50,052 KB
最終ジャッジ日時 2024-06-26 21:02:46
合計ジャッジ時間 16,517 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 4
other WA * 14
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val a = readLine()!!
    println(readLine()!!.map {
        when (it) {
            in 'a'..'z' -> it
            else -> a[it - '0']
        }
    })
}
0