結果

問題 No.18 うーさー暗号
ユーザー Ruizi_LuigiRuizi_Luigi
提出日時 2015-10-19 00:58:24
言語 PHP
(8.3.4)
結果
AC  
実行時間 46 ms / 5,000 ms
コード長 270 bytes
コンパイル時間 3,247 ms
コンパイル使用メモリ 31,576 KB
実行使用メモリ 31,424 KB
最終ジャッジ日時 2024-07-21 19:08:52
合計ジャッジ時間 4,668 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
31,424 KB
testcase_01 AC 43 ms
31,400 KB
testcase_02 AC 45 ms
31,124 KB
testcase_03 AC 46 ms
31,404 KB
testcase_04 AC 44 ms
30,956 KB
testcase_05 AC 45 ms
31,148 KB
testcase_06 AC 46 ms
31,372 KB
testcase_07 AC 44 ms
30,944 KB
testcase_08 AC 46 ms
31,236 KB
testcase_09 AC 45 ms
31,204 KB
testcase_10 AC 44 ms
31,216 KB
testcase_11 AC 43 ms
31,416 KB
testcase_12 AC 46 ms
31,264 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$s = (string)trim(fgets(STDIN));
$line = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
for ($i = 1; $i <= strlen($s); $i++) {
    $idx = strpos($line, $s[$i-1]);
    $i_tmp = $i;

    while($i_tmp > 25) {
        $i_tmp -= 26;
    }
    echo $line[$idx-$i_tmp];
}
echo PHP_EOL;
?>
0