結果

問題 No.18 うーさー暗号
ユーザー fal_rndfal_rnd
提出日時 2017-04-03 18:49:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 116 ms / 5,000 ms
コード長 308 bytes
コンパイル時間 1,955 ms
コンパイル使用メモリ 74,504 KB
実行使用メモリ 54,544 KB
最終ジャッジ日時 2024-07-07 06:28:32
合計ジャッジ時間 3,881 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
52,692 KB
testcase_01 AC 105 ms
53,140 KB
testcase_02 AC 116 ms
54,064 KB
testcase_03 AC 100 ms
53,132 KB
testcase_04 AC 114 ms
54,152 KB
testcase_05 AC 116 ms
53,984 KB
testcase_06 AC 104 ms
52,700 KB
testcase_07 AC 116 ms
54,544 KB
testcase_08 AC 111 ms
54,048 KB
testcase_09 AC 108 ms
54,080 KB
testcase_10 AC 116 ms
54,048 KB
testcase_11 AC 109 ms
52,752 KB
testcase_12 AC 102 ms
52,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{

	static final Scanner s=new Scanner(System.in);

	public static void main(String args[]){
		char in[]=s.next().toCharArray();
		for(int i=0;i<in.length;i++) {
			in[i]+=2599-'A'-i;
			in[i]%=26;
			in[i]+='A';
		}
		System.out.println(String.valueOf(in));
	}
}
0