結果

問題 No.18 うーさー暗号
ユーザー spaciaspacia
提出日時 2015-12-16 09:41:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 90 ms / 5,000 ms
コード長 852 bytes
コンパイル時間 2,115 ms
コンパイル使用メモリ 78,624 KB
実行使用メモリ 53,176 KB
最終ジャッジ日時 2024-07-07 05:55:01
合計ジャッジ時間 3,526 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
51,200 KB
testcase_01 AC 78 ms
51,508 KB
testcase_02 AC 68 ms
51,160 KB
testcase_03 AC 80 ms
51,408 KB
testcase_04 AC 83 ms
51,056 KB
testcase_05 AC 76 ms
51,404 KB
testcase_06 AC 88 ms
53,176 KB
testcase_07 AC 90 ms
51,428 KB
testcase_08 AC 80 ms
51,696 KB
testcase_09 AC 89 ms
51,072 KB
testcase_10 AC 76 ms
51,316 KB
testcase_11 AC 77 ms
51,140 KB
testcase_12 AC 82 ms
51,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.math.*;

class Main18 {
	
	public static String solve (String code) {
		String ret = "";
		char[] alp = {'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'};
		for (int i = 0; i < alp.length / 2; i++) {
			char tmp = alp[i];
			alp[i] = alp[alp.length - i - 1];
			alp[alp.length - i - 1] = tmp;
		}
		for (int i = 0; i < code.length(); i++) {
			char c = code.charAt(i);
			for (int j = 0; j < alp.length; j++) {
				if (c != alp[j]) continue;
				ret += "" + alp[(i + j + 1) % alp.length];
				break;
			}
		}
		return ret;
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		String line = br.readLine();
		
		System.out.println(solve(line));
	}
}
0