結果

問題 No.18 うーさー暗号
ユーザー soujikisoujiki
提出日時 2015-04-24 18:56:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 164 ms / 5,000 ms
コード長 354 bytes
コンパイル時間 3,054 ms
コンパイル使用メモリ 74,908 KB
実行使用メモリ 54,344 KB
最終ジャッジ日時 2024-07-07 05:40:33
合計ジャッジ時間 5,609 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
54,024 KB
testcase_01 AC 121 ms
53,856 KB
testcase_02 AC 125 ms
53,868 KB
testcase_03 AC 156 ms
53,756 KB
testcase_04 AC 151 ms
54,004 KB
testcase_05 AC 139 ms
54,344 KB
testcase_06 AC 164 ms
54,264 KB
testcase_07 AC 164 ms
54,332 KB
testcase_08 AC 155 ms
54,028 KB
testcase_09 AC 162 ms
54,300 KB
testcase_10 AC 123 ms
53,924 KB
testcase_11 AC 109 ms
52,992 KB
testcase_12 AC 154 ms
54,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Yukicoder_18{
	public static void main(String[] args){
		Scanner stdIn = new Scanner(System.in);
		String str = stdIn.next();
		for(int i=0;i<str.length();i++){
			char str1 = str.charAt(i);
			int num = (int)'A'+((int)str1 - (int)'A' + (26-(i%26)-1))%26;
			System.out.print((char)num);
		}
		System.out.println();
	}
}
0