結果

問題 No.18 うーさー暗号
ユーザー hnthnt
提出日時 2016-04-30 02:41:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 149 ms / 5,000 ms
コード長 758 bytes
コンパイル時間 2,825 ms
コンパイル使用メモリ 78,444 KB
実行使用メモリ 54,400 KB
最終ジャッジ日時 2024-07-07 06:06:40
合計ジャッジ時間 5,029 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
53,716 KB
testcase_01 AC 105 ms
53,736 KB
testcase_02 AC 99 ms
52,572 KB
testcase_03 AC 149 ms
54,252 KB
testcase_04 AC 126 ms
54,060 KB
testcase_05 AC 120 ms
53,892 KB
testcase_06 AC 134 ms
53,948 KB
testcase_07 AC 141 ms
54,004 KB
testcase_08 AC 145 ms
53,968 KB
testcase_09 AC 142 ms
54,108 KB
testcase_10 AC 107 ms
53,932 KB
testcase_11 AC 107 ms
53,872 KB
testcase_12 AC 139 ms
54,400 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;
		for (int i = 0 ; i < s.length(); i++) {
			if (map.get(String.valueOf(s.charAt(i))) - (i + 1) % 26 < 0) {
				N = 26 + map.get(String.valueOf(s.charAt(i))) - (i + 1) % 26;
			} else {
				N = map.get(String.valueOf(s.charAt(i))) - (i + 1) % 26;
			}
			System.out.print(az[N]);
		}
	}
}
0