結果

問題 No.18 うーさー暗号
ユーザー skylineskyline
提出日時 2020-02-02 13:38:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 145 ms / 5,000 ms
コード長 1,068 bytes
コンパイル時間 2,226 ms
コンパイル使用メモリ 74,648 KB
実行使用メモリ 54,324 KB
最終ジャッジ日時 2024-09-18 20:42:22
合計ジャッジ時間 4,954 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,100 KB
testcase_01 AC 129 ms
54,056 KB
testcase_02 AC 145 ms
53,980 KB
testcase_03 AC 134 ms
54,020 KB
testcase_04 AC 134 ms
54,112 KB
testcase_05 AC 131 ms
53,952 KB
testcase_06 AC 134 ms
54,108 KB
testcase_07 AC 137 ms
54,244 KB
testcase_08 AC 137 ms
54,172 KB
testcase_09 AC 134 ms
54,232 KB
testcase_10 AC 128 ms
54,136 KB
testcase_11 AC 129 ms
54,324 KB
testcase_12 AC 126 ms
53,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main {
    
    public static void main(String[] args) {
        
        No0018 no = new No0018();

        System.out.println(no.result());
        
    }
    
}

class No0018 {
    public static int MIN_CODE = "A".codePointAt(0);
    public static int MAX_CODE = "Z".codePointAt(0);
    public static int CHAR_NUM = MAX_CODE - MIN_CODE + 1;
    private String s;
    private String result;
    
    public No0018() {
        Scanner sc = new Scanner(System.in);
        this.s = sc.next();
        StringBuffer sb = new StringBuffer("");
        for (int i = 0; i < this.s.length(); i++) {
            int code = this.s.codePointAt(i) - MIN_CODE + 1;
            code = code - (i + 1);
            code %= CHAR_NUM;
            if (code > 0) {
                sb.append(Character.toChars(MIN_CODE + code - 1));
            } else {
                sb.append(Character.toChars(MAX_CODE + code));
            }
        }
        this.result = sb.toString();
    }
    
    public String result() {
        return this.result;
    }
}
0