結果

問題 No.18 うーさー暗号
ユーザー tokustokus
提出日時 2021-11-17 11:47:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 54 ms / 5,000 ms
コード長 1,484 bytes
コンパイル時間 2,076 ms
コンパイル使用メモリ 77,596 KB
実行使用メモリ 37,216 KB
最終ジャッジ日時 2024-12-23 08:09:22
合計ジャッジ時間 3,573 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
36,636 KB
testcase_01 AC 49 ms
36,724 KB
testcase_02 AC 48 ms
36,796 KB
testcase_03 AC 51 ms
36,788 KB
testcase_04 AC 51 ms
36,796 KB
testcase_05 AC 50 ms
36,432 KB
testcase_06 AC 51 ms
36,816 KB
testcase_07 AC 48 ms
37,216 KB
testcase_08 AC 49 ms
36,768 KB
testcase_09 AC 51 ms
36,860 KB
testcase_10 AC 50 ms
36,992 KB
testcase_11 AC 54 ms
37,172 KB
testcase_12 AC 53 ms
36,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package レベル1;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.UncheckedIOException;
import java.util.stream.Stream;

class Main {
    public static void main(String[] args) {
        no18();
    }

    // No.18 うーさー暗号
    private static void no18() {
        BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));

        // 入力値
        String input = "";

        char[] alphabet = { 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R',
                'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z' };

        try {
            input = reader.readLine();
            reader.close();
        } catch (IOException e) {
            throw new UncheckedIOException(e);
        }

        char[] inputs = input.toCharArray();

        StringBuilder output = new StringBuilder();

        for (int i = 0, j = 1; i < inputs.length; i++, j++) {
            if (i % 26 == 0) {
                j = 1;
            }
            for (int k = 0; k < alphabet.length; k++) {
                if (alphabet[k] == inputs[i]) {
                    if (k - j < 0) {
                        
                        output.append(alphabet[26 - j + k]);
                    } else {
                        output.append(alphabet[k - j]);
                    }
                }
            }
        }
        
        System.out.println(output.toString());
    }
}
0