結果

問題 No.1335 1337
ユーザー face4face4
提出日時 2021-04-11 00:05:55
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 320 ms / 2,000 ms
コード長 200 bytes
コンパイル時間 10,624 ms
コンパイル使用メモリ 433,064 KB
実行使用メモリ 57,044 KB
最終ジャッジ日時 2024-06-26 21:06:34
合計ジャッジ時間 17,476 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 317 ms
56,824 KB
testcase_01 AC 312 ms
56,984 KB
testcase_02 AC 317 ms
56,840 KB
testcase_03 AC 320 ms
56,864 KB
testcase_04 AC 316 ms
56,904 KB
testcase_05 AC 314 ms
56,836 KB
testcase_06 AC 317 ms
56,840 KB
testcase_07 AC 317 ms
56,912 KB
testcase_08 AC 316 ms
56,780 KB
testcase_09 AC 317 ms
56,872 KB
testcase_10 AC 315 ms
56,924 KB
testcase_11 AC 315 ms
57,044 KB
testcase_12 AC 317 ms
56,892 KB
testcase_13 AC 317 ms
56,848 KB
testcase_14 AC 316 ms
56,936 KB
testcase_15 AC 320 ms
56,832 KB
testcase_16 AC 319 ms
56,900 KB
testcase_17 AC 314 ms
56,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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