結果

問題 No.1335 1337
ユーザー YU HiroseYU Hirose
提出日時 2024-05-07 01:40:40
言語 Julia
(1.10.2)
結果
MLE  
実行時間 -
コード長 306 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 6,692 KB
実行使用メモリ 457,760 KB
最終ジャッジ日時 2024-11-29 13:38:15
合計ジャッジ時間 5,571 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 248 ms
238,288 KB
testcase_01 AC 250 ms
238,468 KB
testcase_02 AC 250 ms
238,524 KB
testcase_03 AC 255 ms
238,780 KB
testcase_04 AC 251 ms
238,316 KB
testcase_05 AC 259 ms
238,268 KB
testcase_06 AC 267 ms
238,524 KB
testcase_07 AC 265 ms
238,068 KB
testcase_08 AC 261 ms
238,396 KB
testcase_09 AC 253 ms
238,524 KB
testcase_10 AC 258 ms
239,288 KB
testcase_11 AC 250 ms
239,212 KB
testcase_12 AC 247 ms
239,292 KB
testcase_13 AC 250 ms
239,292 KB
testcase_14 AC 256 ms
239,008 KB
testcase_15 AC 254 ms
238,656 KB
testcase_16 AC 255 ms
239,292 KB
testcase_17 MLE -
権限があれば一括ダウンロードができます

ソースコード

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