結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
54,000 KB
testcase_01 AC 97 ms
52,892 KB
testcase_02 AC 100 ms
53,880 KB
testcase_03 AC 129 ms
53,332 KB
testcase_04 AC 128 ms
53,968 KB
testcase_05 AC 125 ms
54,492 KB
testcase_06 AC 146 ms
54,456 KB
testcase_07 AC 125 ms
52,996 KB
testcase_08 AC 143 ms
54,228 KB
testcase_09 AC 152 ms
54,244 KB
testcase_10 AC 115 ms
54,088 KB
testcase_11 AC 114 ms
54,120 KB
testcase_12 AC 137 ms
53,752 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