結果

問題 No.18 うーさー暗号
ユーザー m2543315647m2543315647
提出日時 2015-05-13 09:31:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 107 ms / 5,000 ms
コード長 309 bytes
コンパイル時間 3,108 ms
コンパイル使用メモリ 74,540 KB
実行使用メモリ 54,100 KB
最終ジャッジ日時 2024-07-07 05:42:39
合計ジャッジ時間 4,904 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
54,040 KB
testcase_01 AC 96 ms
52,908 KB
testcase_02 AC 96 ms
52,908 KB
testcase_03 AC 104 ms
53,988 KB
testcase_04 AC 107 ms
53,908 KB
testcase_05 AC 94 ms
52,556 KB
testcase_06 AC 100 ms
52,916 KB
testcase_07 AC 92 ms
52,556 KB
testcase_08 AC 104 ms
53,588 KB
testcase_09 AC 106 ms
54,100 KB
testcase_10 AC 96 ms
53,012 KB
testcase_11 AC 104 ms
53,848 KB
testcase_12 AC 99 ms
52,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class No18 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		char[] s = sc.nextLine().toCharArray();
		for(int i=0;i<s.length;i++){
			s[i]-=(i%('Z'-'A'+1))+1;
			if(s[i]<'A')s[i]+='Z'-'A'+1;
		}
		System.out.println(String.valueOf(s));
	}
}
0