結果

問題 No.18 うーさー暗号
ユーザー Ruizi_LuigiRuizi_Luigi
提出日時 2015-10-19 01:04:28
言語 PHP
(8.3.4)
結果
AC  
実行時間 33 ms / 5,000 ms
コード長 272 bytes
コンパイル時間 2,009 ms
コンパイル使用メモリ 32,276 KB
実行使用メモリ 31,476 KB
最終ジャッジ日時 2024-07-07 05:50:49
合計ジャッジ時間 1,971 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
30,896 KB
testcase_01 AC 31 ms
31,476 KB
testcase_02 AC 31 ms
31,228 KB
testcase_03 AC 32 ms
31,128 KB
testcase_04 AC 32 ms
30,984 KB
testcase_05 AC 31 ms
30,932 KB
testcase_06 AC 32 ms
31,144 KB
testcase_07 AC 32 ms
31,220 KB
testcase_08 AC 33 ms
31,128 KB
testcase_09 AC 32 ms
31,164 KB
testcase_10 AC 32 ms
31,172 KB
testcase_11 AC 33 ms
31,064 KB
testcase_12 AC 33 ms
30,948 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 = $idx - $i;

    while($i_tmp < 0) {
        $i_tmp += 26;
    }
    echo $line[$i_tmp];
}
echo PHP_EOL;
?>
0