結果

問題 No.18 うーさー暗号
ユーザー atkrymatkrym
提出日時 2016-11-07 17:43:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 5,000 ms
コード長 487 bytes
コンパイル時間 2,356 ms
コンパイル使用メモリ 74,188 KB
実行使用メモリ 41,336 KB
最終ジャッジ日時 2024-07-07 06:21:45
合計ジャッジ時間 4,282 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
40,956 KB
testcase_01 AC 119 ms
41,252 KB
testcase_02 AC 121 ms
41,184 KB
testcase_03 AC 125 ms
41,204 KB
testcase_04 AC 124 ms
40,972 KB
testcase_05 AC 123 ms
41,252 KB
testcase_06 AC 125 ms
41,020 KB
testcase_07 AC 126 ms
40,780 KB
testcase_08 AC 124 ms
40,928 KB
testcase_09 AC 124 ms
41,336 KB
testcase_10 AC 122 ms
40,780 KB
testcase_11 AC 126 ms
41,104 KB
testcase_12 AC 127 ms
41,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    private static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws Exception {
        String s = sc.next();
        StringBuilder sb = new StringBuilder();
        for (int i = 0;i < s.length();i++) {
            char c = s.charAt(i);
            int val = (int)c-(i+1)%26;
            if (val < 65) val += 26;
            sb.append((char)val);
        }
        System.out.println(sb.toString());
    }
}
0