結果
問題 | No.18 うーさー暗号 |
ユーザー | me |
提出日時 | 2023-05-02 13:37:49 |
言語 | PHP (8.3.4) |
結果 |
WA
|
実行時間 | - |
コード長 | 830 bytes |
コンパイル時間 | 331 ms |
コンパイル使用メモリ | 32,400 KB |
実行使用メモリ | 32,788 KB |
最終ジャッジ日時 | 2024-11-21 04:31:25 |
合計ジャッジ時間 | 1,816 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
32,532 KB |
testcase_01 | AC | 42 ms
32,404 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?php $s = trim(fgets(STDIN)); $s = str_split($s, 1); $alphabet = [ 'Z' => 0, 'A' => 1, 'B' => 2, 'C' => 3, 'D' => 4, 'E' => 5, 'F' => 6, 'G' => 7, 'H' => 8, 'I' => 9, 'J' => 10, 'K' => 11, 'L' => 12, 'M' => 13, 'N' => 14, 'O' => 15, 'P' => 16, 'Q' => 17, 'R' => 18, 'S' => 19, 'T' => 20, 'U' => 21, 'V' => 22, 'W' => 23, 'X' => 24, 'Y' => 25, ]; $answer = ''; for($i = 0; $i < count($s); $i++){ $char = $s[$i]; $char_num = $alphabet[$char]; if($i + 1 > 25){ $char_num = $char_num - (($i + 1) % 26); } else { $char_num = $char_num - ($i + 1); } foreach($alphabet as $key => $value){ if($char_num === $value){ $answer .= $key; } } } echo $answer;