結果

問題 No.18 うーさー暗号
ユーザー pao2pao2pao2pao2
提出日時 2022-07-30 08:01:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 183 ms / 5,000 ms
コード長 453 bytes
コンパイル時間 4,207 ms
コンパイル使用メモリ 86,304 KB
実行使用メモリ 43,068 KB
最終ジャッジ日時 2024-07-20 02:59:59
合計ジャッジ時間 7,050 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 162 ms
42,480 KB
testcase_01 AC 163 ms
42,428 KB
testcase_02 AC 167 ms
42,600 KB
testcase_03 AC 172 ms
43,068 KB
testcase_04 AC 183 ms
42,776 KB
testcase_05 AC 176 ms
42,532 KB
testcase_06 AC 178 ms
42,868 KB
testcase_07 AC 175 ms
42,620 KB
testcase_08 AC 179 ms
42,772 KB
testcase_09 AC 182 ms
42,776 KB
testcase_10 AC 168 ms
42,400 KB
testcase_11 AC 169 ms
42,352 KB
testcase_12 AC 169 ms
42,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		String s = sc.next();
		System.out.println(decrypt(s));

		sc.close();
	}

	static char cDecrypt(char c, int i) {
		return (char)('A' + ((c - i % 26) - 'A' + 26) % 26);
	}

	static String decrypt(String s) {
		String re = "";
		for (int i = 0; i < s.length(); i++)
			re += cDecrypt(s.charAt(i), i + 1);
		return re;
	}
}
0