結果

問題 No.18 うーさー暗号
ユーザー koukonkokoukonko
提出日時 2015-12-07 12:01:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 105 ms / 5,000 ms
コード長 745 bytes
コンパイル時間 2,164 ms
コンパイル使用メモリ 81,208 KB
実行使用メモリ 39,704 KB
最終ジャッジ日時 2024-07-07 05:54:47
合計ジャッジ時間 4,077 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
38,072 KB
testcase_01 AC 86 ms
38,288 KB
testcase_02 AC 89 ms
39,704 KB
testcase_03 AC 96 ms
38,940 KB
testcase_04 AC 91 ms
38,600 KB
testcase_05 AC 93 ms
38,432 KB
testcase_06 AC 95 ms
38,552 KB
testcase_07 AC 94 ms
38,656 KB
testcase_08 AC 97 ms
38,772 KB
testcase_09 AC 105 ms
38,304 KB
testcase_10 AC 96 ms
38,012 KB
testcase_11 AC 88 ms
38,156 KB
testcase_12 AC 90 ms
38,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	public static void main(String[] args) {
		BufferedReader buff = new BufferedReader(new InputStreamReader(System.in));

		// 0x41 = A 0x5A = Z
		final char[] ALPHA = new char[26];
		for(int i = 0; i < 26; ++i){
			ALPHA[i] = (char) ('A' + i);
		}

		try {
			String line = buff.readLine();
			String ans = "";

			for(int i = 0; i < line.length(); ++i){
				int num = line.charAt(i) - 'A' - (i + 1);
				if(num < 0){
					num %= 26;
					num += 26;
				}
				if(num == 26){
					num %= 26;
				}
				ans += ALPHA[num];
			}
			System.out.println(ans);

		} catch (NumberFormatException e) {

		} catch (IOException e) {

		}
	}
}
0