結果

問題 No.18 うーさー暗号
ユーザー TatsuDXTatsuDX
提出日時 2016-09-08 23:27:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 181 ms / 5,000 ms
コード長 352 bytes
コンパイル時間 3,645 ms
コンパイル使用メモリ 76,056 KB
実行使用メモリ 55,080 KB
最終ジャッジ日時 2024-07-07 06:17:36
合計ジャッジ時間 6,799 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 164 ms
55,080 KB
testcase_01 AC 162 ms
54,904 KB
testcase_02 AC 163 ms
54,840 KB
testcase_03 AC 170 ms
54,812 KB
testcase_04 AC 168 ms
54,848 KB
testcase_05 AC 164 ms
55,036 KB
testcase_06 AC 179 ms
55,040 KB
testcase_07 AC 181 ms
54,872 KB
testcase_08 AC 173 ms
55,048 KB
testcase_09 AC 169 ms
54,724 KB
testcase_10 AC 162 ms
55,044 KB
testcase_11 AC 160 ms
54,944 KB
testcase_12 AC 177 ms
54,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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

		String s = sc.next(), ans = "";
		char[] ch = s.toCharArray();

		for(int i = 0; i < ch.length; i++){
			ch[i] -= (i+1)%26;
			while(ch[i] < 'A'){
				ch[i] += 26;
			}
			ans += ch[i];
		}
		System.out.println(ans);
	}
}
0