結果

問題 No.18 うーさー暗号
ユーザー abcabc
提出日時 2016-10-17 18:35:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 149 ms / 5,000 ms
コード長 415 bytes
コンパイル時間 1,866 ms
コンパイル使用メモリ 74,984 KB
実行使用メモリ 54,268 KB
最終ジャッジ日時 2024-07-07 06:20:36
合計ジャッジ時間 3,940 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
54,240 KB
testcase_01 AC 96 ms
52,956 KB
testcase_02 AC 101 ms
52,856 KB
testcase_03 AC 139 ms
54,212 KB
testcase_04 AC 112 ms
53,976 KB
testcase_05 AC 122 ms
53,024 KB
testcase_06 AC 140 ms
53,272 KB
testcase_07 AC 127 ms
52,984 KB
testcase_08 AC 127 ms
53,152 KB
testcase_09 AC 149 ms
54,228 KB
testcase_10 AC 118 ms
54,268 KB
testcase_11 AC 113 ms
54,000 KB
testcase_12 AC 127 ms
52,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        String s = sc.next();

        for (int i = 0; i < s.length(); i++) {

            int charIndex = (s.charAt(i) - 'A' - (i + 1)) % 26;
            char character = (char) (((charIndex + 26) % 26) + 'A');

            System.out.print(character);

        }

    }

}
0