結果

問題 No.18 うーさー暗号
ユーザー hnthnt
提出日時 2016-04-30 02:46:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 181 ms / 5,000 ms
コード長 701 bytes
コンパイル時間 3,520 ms
コンパイル使用メモリ 77,628 KB
実行使用メモリ 54,336 KB
最終ジャッジ日時 2024-07-07 06:08:08
合計ジャッジ時間 6,547 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,048 KB
testcase_01 AC 127 ms
53,668 KB
testcase_02 AC 136 ms
53,796 KB
testcase_03 AC 179 ms
54,260 KB
testcase_04 AC 167 ms
54,172 KB
testcase_05 AC 170 ms
53,976 KB
testcase_06 AC 177 ms
53,884 KB
testcase_07 AC 176 ms
54,128 KB
testcase_08 AC 181 ms
54,336 KB
testcase_09 AC 167 ms
54,080 KB
testcase_10 AC 135 ms
53,740 KB
testcase_11 AC 138 ms
53,792 KB
testcase_12 AC 167 ms
54,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;


public class no18 {
	public static void main(String[] args) {
		String[] az = {"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"};
		Scanner sc = new Scanner(System.in);
		Map<String,Integer> map = new HashMap<String,Integer>();
		for (int i = 0; i < az.length; i++) {
			map.put(az[i],i);
		}
		String s = sc.next();
		int N = 0;
		int azidx = 0;
		for (int i = 0 ; i < s.length(); i++) {
			azidx = map.get(String.valueOf(s.charAt(i))) - (i + 1) % 26;
			if (azidx < 0) {
				N = 26 + azidx;
			} else {
				N = azidx;
			}
			System.out.print(az[N]);
		}
	}
}
0