結果

問題 No.18 うーさー暗号
ユーザー jimanojimano
提出日時 2016-06-19 14:17:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 85 ms / 5,000 ms
コード長 803 bytes
コンパイル時間 2,190 ms
コンパイル使用メモリ 74,784 KB
実行使用メモリ 50,992 KB
最終ジャッジ日時 2024-07-07 06:10:40
合計ジャッジ時間 3,005 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
50,176 KB
testcase_01 AC 45 ms
50,112 KB
testcase_02 AC 48 ms
50,080 KB
testcase_03 AC 76 ms
50,992 KB
testcase_04 AC 52 ms
50,020 KB
testcase_05 AC 53 ms
50,124 KB
testcase_06 AC 68 ms
50,836 KB
testcase_07 AC 74 ms
50,908 KB
testcase_08 AC 85 ms
50,920 KB
testcase_09 AC 68 ms
50,920 KB
testcase_10 AC 46 ms
50,144 KB
testcase_11 AC 46 ms
50,032 KB
testcase_12 AC 70 ms
50,596 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[] arc = { 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R',
					'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z' };
			char[] c = br.readLine().toCharArray();

			for (int i = 0; i < c.length; i++) {
				for (int j = 0; j < arc.length; j++) {
					int idx = j - (i % 26) - 1;
					if (c[i] == arc[j]) {
						if (idx < 0) {
							System.out.print(arc[idx + 26]);
						} else {
							System.out.print(arc[idx]);
						}
					}
				}
			}
		} catch (IOException e) {
			e.printStackTrace();
		}
	}
}
0