結果

問題 No.1335 1337
ユーザー YU HiroseYU Hirose
提出日時 2024-05-07 01:40:40
言語 Julia
(1.10.2)
結果
MLE  
実行時間 -
コード長 306 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 5,632 KB
実行使用メモリ 482,168 KB
最終ジャッジ日時 2024-05-07 01:40:52
合計ジャッジ時間 8,683 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 253 ms
239,036 KB
testcase_01 AC 270 ms
239,028 KB
testcase_02 AC 258 ms
237,752 KB
testcase_03 AC 271 ms
239,036 KB
testcase_04 AC 250 ms
238,400 KB
testcase_05 AC 248 ms
238,268 KB
testcase_06 AC 245 ms
238,268 KB
testcase_07 AC 242 ms
238,524 KB
testcase_08 AC 249 ms
238,396 KB
testcase_09 AC 264 ms
238,268 KB
testcase_10 AC 246 ms
238,920 KB
testcase_11 AC 243 ms
239,224 KB
testcase_12 AC 264 ms
238,268 KB
testcase_13 AC 290 ms
238,068 KB
testcase_14 AC 270 ms
238,140 KB
testcase_15 AC 249 ms
238,392 KB
testcase_16 AC 259 ms
239,040 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