結果

問題 No.18 うーさー暗号
ユーザー aikon_marimoaikon_marimo
提出日時 2018-01-29 22:34:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 164 ms / 5,000 ms
コード長 375 bytes
コンパイル時間 2,784 ms
コンパイル使用メモリ 76,560 KB
実行使用メモリ 42,796 KB
最終ジャッジ日時 2024-07-07 06:43:41
合計ジャッジ時間 5,138 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 152 ms
42,124 KB
testcase_01 AC 161 ms
42,124 KB
testcase_02 AC 136 ms
42,028 KB
testcase_03 AC 161 ms
42,784 KB
testcase_04 AC 150 ms
42,452 KB
testcase_05 AC 137 ms
42,452 KB
testcase_06 AC 163 ms
42,740 KB
testcase_07 AC 143 ms
42,644 KB
testcase_08 AC 150 ms
42,796 KB
testcase_09 AC 164 ms
42,704 KB
testcase_10 AC 145 ms
42,184 KB
testcase_11 AC 160 ms
42,236 KB
testcase_12 AC 160 ms
42,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner in = new Scanner(System.in);
		
		String S = in.next();
		
		String ans = "";
		for (int i = 1; i <= S.length(); i++) {
			int d = S.charAt(i-1) - 'A';
	        d += 2600;
	        d -= i;
	        d %= 26;
	        ans += (char)('A' + d);
		}
		System.out.println(ans);
	}
}
0