結果

問題 No.18 うーさー暗号
ユーザー GrenacheGrenache
提出日時 2015-09-22 22:35:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 5,000 ms
コード長 393 bytes
コンパイル時間 3,398 ms
コンパイル使用メモリ 77,340 KB
実行使用メモリ 41,332 KB
最終ジャッジ日時 2024-07-07 05:48:39
合計ジャッジ時間 4,868 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
41,056 KB
testcase_01 AC 98 ms
41,160 KB
testcase_02 AC 93 ms
40,900 KB
testcase_03 AC 98 ms
41,228 KB
testcase_04 AC 112 ms
40,880 KB
testcase_05 AC 111 ms
41,296 KB
testcase_06 AC 123 ms
40,924 KB
testcase_07 AC 120 ms
41,260 KB
testcase_08 AC 108 ms
41,296 KB
testcase_09 AC 111 ms
41,080 KB
testcase_10 AC 109 ms
41,252 KB
testcase_11 AC 108 ms
41,332 KB
testcase_12 AC 114 ms
41,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder18 {

    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] - 'A' - i - 1 + 26 * 1024) % 26 + 'A');
        }

        System.out.println(new String(s));

        sc.close();
    }
}
0