結果

問題 No.18 うーさー暗号
ユーザー jp_stejp_ste
提出日時 2016-02-18 06:37:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 5,000 ms
コード長 350 bytes
コンパイル時間 2,134 ms
コンパイル使用メモリ 74,276 KB
実行使用メモリ 41,528 KB
最終ジャッジ日時 2024-07-07 06:00:24
合計ジャッジ時間 3,873 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
41,528 KB
testcase_01 AC 122 ms
41,016 KB
testcase_02 AC 116 ms
40,928 KB
testcase_03 AC 128 ms
40,908 KB
testcase_04 AC 114 ms
41,044 KB
testcase_05 AC 104 ms
40,944 KB
testcase_06 AC 117 ms
41,208 KB
testcase_07 AC 116 ms
41,100 KB
testcase_08 AC 106 ms
40,992 KB
testcase_09 AC 116 ms
41,060 KB
testcase_10 AC 111 ms
41,024 KB
testcase_11 AC 99 ms
41,072 KB
testcase_12 AC 113 ms
41,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		String S = scan.nextLine();
		
		char[] out = S.toCharArray();
		for(int i=0; i<S.length(); i++) {
			for(int j=0; j<i+1; j++) {
				out[i]--;
				if(out[i] < 'A') out[i] = 'Z';
			}
		}
		System.out.println(out);
	}
}
0