結果

問題 No.18 うーさー暗号
ユーザー jimanojimano
提出日時 2016-06-19 14:49:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 82 ms / 5,000 ms
コード長 610 bytes
コンパイル時間 1,586 ms
コンパイル使用メモリ 74,316 KB
実行使用メモリ 52,812 KB
最終ジャッジ日時 2024-07-07 06:10:43
合計ジャッジ時間 2,875 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
50,268 KB
testcase_01 AC 45 ms
50,092 KB
testcase_02 AC 46 ms
50,300 KB
testcase_03 AC 82 ms
51,368 KB
testcase_04 AC 55 ms
50,580 KB
testcase_05 AC 53 ms
50,332 KB
testcase_06 AC 75 ms
51,184 KB
testcase_07 AC 76 ms
50,816 KB
testcase_08 AC 71 ms
51,248 KB
testcase_09 AC 78 ms
50,792 KB
testcase_10 AC 46 ms
49,988 KB
testcase_11 AC 45 ms
50,248 KB
testcase_12 AC 59 ms
52,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;

public class Main{
    public static void main(String[] args) {

        try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {
char[] c = br.readLine().toCharArray();
           for (int i = 0; i < c.length; i++) {
				int idx = (int)c[i] - (i + 1) % 26;
					if (idx < 65) {
						System.out.print((char) (idx + 26));
					} else {
						System.out.print((char)idx);
					}
			}
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}
0