結果

問題 No.18 うーさー暗号
ユーザー core123core123
提出日時 2019-05-07 14:57:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 388 bytes
コンパイル時間 2,513 ms
コンパイル使用メモリ 79,132 KB
実行使用メモリ 41,384 KB
最終ジャッジ日時 2024-07-01 23:33:39
合計ジャッジ時間 5,040 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
40,764 KB
testcase_01 AC 126 ms
41,308 KB
testcase_02 AC 129 ms
40,896 KB
testcase_03 AC 131 ms
40,904 KB
testcase_04 AC 129 ms
41,076 KB
testcase_05 AC 128 ms
41,188 KB
testcase_06 AC 130 ms
41,384 KB
testcase_07 AC 130 ms
40,984 KB
testcase_08 AC 130 ms
41,000 KB
testcase_09 AC 129 ms
41,104 KB
testcase_10 AC 126 ms
40,828 KB
testcase_11 AC 125 ms
40,956 KB
testcase_12 AC 125 ms
40,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner sc=new Scanner(System.in);
		String string=sc.next();
		StringBuilder sb=new StringBuilder();
		for(int i=0;i<string.length();i++) {
			sb.append((char)(((((string.charAt(i)-i-1-'A')%26)+26)%26)+'A'));
		}
		System.out.println(sb);

	}

}
0