結果

問題 No.18 うーさー暗号
ユーザー ryosuke0825ryosuke0825
提出日時 2018-04-09 22:37:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 174 ms / 5,000 ms
コード長 388 bytes
コンパイル時間 3,305 ms
コンパイル使用メモリ 76,352 KB
実行使用メモリ 43,140 KB
最終ジャッジ日時 2024-06-26 20:46:46
合計ジャッジ時間 6,160 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 150 ms
42,560 KB
testcase_01 AC 148 ms
42,408 KB
testcase_02 AC 154 ms
42,408 KB
testcase_03 AC 167 ms
42,892 KB
testcase_04 AC 160 ms
42,544 KB
testcase_05 AC 151 ms
42,456 KB
testcase_06 AC 165 ms
43,068 KB
testcase_07 AC 160 ms
43,140 KB
testcase_08 AC 174 ms
43,068 KB
testcase_09 AC 169 ms
43,056 KB
testcase_10 AC 139 ms
41,952 KB
testcase_11 AC 138 ms
42,072 KB
testcase_12 AC 157 ms
42,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder1_0;

import java.util.Scanner;

public class No18 {

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

		String ans = "";

		for (int i = 0; i < S.length(); i++) {
			int code = S.charAt(i)-'A' ;
			code += 2600;
			code -= i+1;
			code %= 26;
			ans += (char) ('A' + code);
		}

		System.out.println(ans);

	}

}
0