結果

問題 No.18 うーさー暗号
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-11 03:52:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 174 ms / 5,000 ms
コード長 443 bytes
コンパイル時間 2,079 ms
コンパイル使用メモリ 75,164 KB
実行使用メモリ 41,552 KB
最終ジャッジ日時 2024-07-07 06:22:07
合計ジャッジ時間 4,802 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
40,920 KB
testcase_01 AC 129 ms
41,000 KB
testcase_02 AC 135 ms
41,016 KB
testcase_03 AC 168 ms
41,464 KB
testcase_04 AC 149 ms
41,172 KB
testcase_05 AC 151 ms
41,552 KB
testcase_06 AC 174 ms
41,112 KB
testcase_07 AC 163 ms
41,448 KB
testcase_08 AC 171 ms
41,344 KB
testcase_09 AC 172 ms
41,552 KB
testcase_10 AC 132 ms
41,120 KB
testcase_11 AC 122 ms
39,856 KB
testcase_12 AC 165 ms
41,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String S = sc.next();
        byte [] u = S.getBytes();
        for(int i=0; i<u.length; i++){
            int d = u[i] - (i+1);
            while(d<65){
                d = d+26;
            }
            char c = (char)d;
            System.out.print(c);
        }
        System.out.println();
    }
}
0