結果

問題 No.1335 1337
ユーザー YU HiroseYU Hirose
提出日時 2024-05-07 01:40:09
言語 Julia
(1.10.2)
結果
AC  
実行時間 271 ms / 2,000 ms
コード長 306 bytes
コンパイル時間 102 ms
コンパイル使用メモリ 6,816 KB
実行使用メモリ 244,560 KB
最終ジャッジ日時 2024-11-29 13:35:52
合計ジャッジ時間 7,695 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 257 ms
244,560 KB
testcase_01 AC 250 ms
239,760 KB
testcase_02 AC 247 ms
239,808 KB
testcase_03 AC 271 ms
238,936 KB
testcase_04 AC 252 ms
238,664 KB
testcase_05 AC 251 ms
239,436 KB
testcase_06 AC 256 ms
239,540 KB
testcase_07 AC 246 ms
239,108 KB
testcase_08 AC 249 ms
242,792 KB
testcase_09 AC 250 ms
238,608 KB
testcase_10 AC 249 ms
239,456 KB
testcase_11 AC 248 ms
240,268 KB
testcase_12 AC 249 ms
238,896 KB
testcase_13 AC 252 ms
238,124 KB
testcase_14 AC 256 ms
239,316 KB
testcase_15 AC 259 ms
237,992 KB
testcase_16 AC 251 ms
243,228 KB
testcase_17 AC 251 ms
239,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

function solve()
    a = readline()
    s = readline()
    d = Vector{Char}(undef, 10)
    for i in 1:10
        d[i] = a[i]
    end
    for x in s
        if isdigit(x)
            y = parse(Int, x)
            print(d[y+1])
        else
            print(x)
        end
    end
    println()
end
solve()
0