結果

問題 No.18 うーさー暗号
ユーザー Natsume-MNatsume-M
提出日時 2016-11-28 18:01:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 5,000 ms
コード長 322 bytes
コンパイル時間 2,042 ms
コンパイル使用メモリ 73,968 KB
実行使用メモリ 41,304 KB
最終ジャッジ日時 2024-07-07 06:22:38
合計ジャッジ時間 4,019 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
40,856 KB
testcase_01 AC 114 ms
41,008 KB
testcase_02 AC 119 ms
40,996 KB
testcase_03 AC 121 ms
41,304 KB
testcase_04 AC 114 ms
41,068 KB
testcase_05 AC 108 ms
40,844 KB
testcase_06 AC 104 ms
40,948 KB
testcase_07 AC 120 ms
40,972 KB
testcase_08 AC 113 ms
41,212 KB
testcase_09 AC 101 ms
41,196 KB
testcase_10 AC 121 ms
41,008 KB
testcase_11 AC 111 ms
40,972 KB
testcase_12 AC 114 ms
41,160 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