結果

問題 No.1335 1337
ユーザー takutakutakutaku
提出日時 2021-05-31 09:29:43
言語 PHP
(8.3.4)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 327 bytes
コンパイル時間 1,593 ms
コンパイル使用メモリ 31,344 KB
実行使用メモリ 31,268 KB
最終ジャッジ日時 2024-11-08 21:06:54
合計ジャッジ時間 3,188 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
30,808 KB
testcase_01 AC 49 ms
31,080 KB
testcase_02 AC 47 ms
30,972 KB
testcase_03 AC 47 ms
30,884 KB
testcase_04 AC 47 ms
30,940 KB
testcase_05 AC 48 ms
30,844 KB
testcase_06 AC 46 ms
30,896 KB
testcase_07 AC 42 ms
30,940 KB
testcase_08 AC 43 ms
30,920 KB
testcase_09 AC 42 ms
31,024 KB
testcase_10 AC 42 ms
30,936 KB
testcase_11 AC 42 ms
31,184 KB
testcase_12 AC 43 ms
30,948 KB
testcase_13 AC 43 ms
31,008 KB
testcase_14 AC 43 ms
31,268 KB
testcase_15 AC 42 ms
30,904 KB
testcase_16 AC 43 ms
30,616 KB
testcase_17 AC 42 ms
31,244 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
    $A = fgets(STDIN);
    $S = fgets(STDIN);
    
    $array_A = str_split($A);
    $array_S = str_split($S);
    
    for($i = 0; $i < strlen($S); $i++) {
        if('0' <= $array_S[$i] && $array_S[$i] <= '9'){
            echo $array_A[$array_S[$i]];
        } else {
            echo $array_S[$i];
        }
    }
?>
0