結果

問題 No.18 うーさー暗号
ユーザー SuunnSuunn
提出日時 2018-11-20 04:52:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 176 ms / 5,000 ms
コード長 376 bytes
コンパイル時間 2,201 ms
コンパイル使用メモリ 74,176 KB
実行使用メモリ 41,876 KB
最終ジャッジ日時 2024-06-06 21:04:04
合計ジャッジ時間 5,158 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,216 KB
testcase_01 AC 132 ms
41,344 KB
testcase_02 AC 135 ms
41,352 KB
testcase_03 AC 176 ms
41,760 KB
testcase_04 AC 164 ms
41,120 KB
testcase_05 AC 166 ms
41,436 KB
testcase_06 AC 167 ms
41,472 KB
testcase_07 AC 161 ms
41,876 KB
testcase_08 AC 166 ms
41,596 KB
testcase_09 AC 171 ms
41,540 KB
testcase_10 AC 133 ms
41,188 KB
testcase_11 AC 135 ms
41,432 KB
testcase_12 AC 168 ms
41,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
	

public class Main{
	
	
	public static void main(String args[])throws Exception{
		
		Scanner sc = new Scanner(System.in);
		String S = sc.next();
		int L = S.length();
		char[] retu = new char[26];
		for(char c='A';c<='Z';c++){
			retu[c-'A'] = c;
		}
		for(int i=0;i<L;i++){
			System.out.print(retu[(S.charAt(i)-'A'-(i+1)+L*26)%26]);
		}
	}
	
}
0