結果

問題 No.18 うーさー暗号
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-04-23 12:12:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 51 ms / 5,000 ms
コード長 860 bytes
コンパイル時間 2,322 ms
コンパイル使用メモリ 74,756 KB
実行使用メモリ 50,424 KB
最終ジャッジ日時 2024-07-07 06:29:36
合計ジャッジ時間 3,091 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
50,128 KB
testcase_01 AC 47 ms
50,028 KB
testcase_02 AC 47 ms
49,908 KB
testcase_03 AC 47 ms
50,188 KB
testcase_04 AC 48 ms
49,920 KB
testcase_05 AC 47 ms
49,852 KB
testcase_06 AC 47 ms
50,116 KB
testcase_07 AC 48 ms
50,016 KB
testcase_08 AC 48 ms
50,288 KB
testcase_09 AC 47 ms
50,296 KB
testcase_10 AC 46 ms
50,120 KB
testcase_11 AC 48 ms
50,424 KB
testcase_12 AC 51 ms
49,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
        String S = reader.readLine();
        StringBuilder builder = new StringBuilder();
        for (int i = 0; i < S.length(); i++) {
            int N = i + 1;
            builder.append(intToChar(charToInt(S.charAt(i)) - N));
        }
        System.out.println(builder.toString());
    }

    private static int charToInt(char c) {
        return (c - 'A');
    }

    private static char intToChar(int i) {
        i = (i % 26);
        if (i < 0) {
            return (char) ('Z' + i + 1);
        } else {
            return (char) ('A' + i);
        }
    }
}
0