結果

問題 No.18 うーさー暗号
ユーザー Natsume-MNatsume-M
提出日時 2016-11-28 18:05:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 301 bytes
コンパイル時間 2,199 ms
コンパイル使用メモリ 74,544 KB
実行使用メモリ 41,320 KB
最終ジャッジ日時 2024-07-07 06:22:43
合計ジャッジ時間 4,416 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
40,940 KB
testcase_01 AC 130 ms
41,080 KB
testcase_02 AC 125 ms
41,148 KB
testcase_03 AC 128 ms
40,932 KB
testcase_04 AC 132 ms
41,060 KB
testcase_05 AC 129 ms
40,956 KB
testcase_06 AC 132 ms
41,204 KB
testcase_07 AC 130 ms
40,980 KB
testcase_08 AC 133 ms
40,968 KB
testcase_09 AC 131 ms
41,084 KB
testcase_10 AC 126 ms
41,320 KB
testcase_11 AC 126 ms
41,128 KB
testcase_12 AC 130 ms
41,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class y18 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        char[] s = sc.next().toCharArray();
        for (int i=0; i<s.length; i++)	s[i] = (char)(((s[i]-66-i)%26+26)%26+65);
        System.out.println(String.valueOf(s));
    }
}
0