結果

問題 No.18 うーさー暗号
ユーザー eagleeagle
提出日時 2022-06-16 14:10:42
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 775 bytes
コンパイル時間 2,528 ms
コンパイル使用メモリ 74,260 KB
実行使用メモリ 41,632 KB
最終ジャッジ日時 2024-10-06 11:46:49
合計ジャッジ時間 4,210 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,280 KB
testcase_01 AC 124 ms
41,124 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner sc = new Scanner(System.in);
		String S = sc.next();
		char[] moji = {'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 < S.length(); i++) {
			char c = S.charAt(i);
			int idx = 0;
			for(int j = 0; j < moji.length; j++) {
				if(moji[j] == c) {
					idx = j;
					break;
				}
			}
			if(0 > idx - (i + 1)) {
				idx = (idx - (i + 1)) * (-1);
				idx = idx % moji.length;
				idx = moji.length - idx;
			} else {
				idx = idx - (i + 1);
			}
			System.out.print(moji[idx]);
		}
		System.out.println();
	}
}
0