結果

問題 No.18 うーさー暗号
ユーザー shinshin
提出日時 2022-05-12 18:56:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 150 ms / 5,000 ms
コード長 365 bytes
コンパイル時間 3,564 ms
コンパイル使用メモリ 81,124 KB
実行使用メモリ 42,964 KB
最終ジャッジ日時 2024-07-20 13:03:18
合計ジャッジ時間 6,204 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,852 KB
testcase_01 AC 128 ms
41,620 KB
testcase_02 AC 150 ms
42,288 KB
testcase_03 AC 138 ms
42,708 KB
testcase_04 AC 143 ms
42,120 KB
testcase_05 AC 146 ms
42,496 KB
testcase_06 AC 142 ms
42,236 KB
testcase_07 AC 143 ms
42,964 KB
testcase_08 AC 140 ms
42,872 KB
testcase_09 AC 139 ms
42,196 KB
testcase_10 AC 129 ms
41,776 KB
testcase_11 AC 142 ms
42,384 KB
testcase_12 AC 136 ms
42,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

public class No18 {

	public static void main(String[] args) {
		java.util.Scanner s = new java.util.Scanner(System.in);
		String S = s.nextLine();
		s.close();

		char[] c = S.toCharArray();
		S = "";
		for(int i = 0;i < c.length;i++) {
			int ci = c[i] - ((i + 1) % 26);
			if(ci < 65) {
				ci += 26;
			}
			S = S + (char)ci;
		}

		System.out.println(S);
	}

}
0