結果

問題 No.18 うーさー暗号
ユーザー yshrnsmryshrnsmr
提出日時 2017-03-07 00:39:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 157 ms / 5,000 ms
コード長 656 bytes
コンパイル時間 1,957 ms
コンパイル使用メモリ 76,672 KB
実行使用メモリ 55,096 KB
最終ジャッジ日時 2024-07-07 06:26:52
合計ジャッジ時間 4,486 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,740 KB
testcase_01 AC 118 ms
54,496 KB
testcase_02 AC 138 ms
54,792 KB
testcase_03 AC 155 ms
54,888 KB
testcase_04 AC 130 ms
55,096 KB
testcase_05 AC 157 ms
54,856 KB
testcase_06 AC 129 ms
54,488 KB
testcase_07 AC 140 ms
54,636 KB
testcase_08 AC 149 ms
54,568 KB
testcase_09 AC 142 ms
54,592 KB
testcase_10 AC 136 ms
54,900 KB
testcase_11 AC 145 ms
54,632 KB
testcase_12 AC 142 ms
54,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();

        String alphabets = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";

        String result = "";

        for (int i = 0; i < s.length(); i++) {
            int idx1 = alphabets.indexOf(s.charAt(i));
            int key = i + 1;
            int idx2 = (idx1 - key) % alphabets.length();

            if (idx2 < 0) {
                idx2 += alphabets.length();
            }

            result += alphabets.charAt(idx2);
        }

        System.out.println(result);

        sc.close();
    }

}
0