結果

問題 No.18 うーさー暗号
ユーザー matsuyoshi30matsuyoshi30
提出日時 2016-02-03 18:42:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 148 ms / 5,000 ms
コード長 434 bytes
コンパイル時間 1,656 ms
コンパイル使用メモリ 74,448 KB
実行使用メモリ 54,392 KB
最終ジャッジ日時 2024-07-07 05:58:43
合計ジャッジ時間 3,871 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
54,024 KB
testcase_01 AC 88 ms
52,312 KB
testcase_02 AC 94 ms
52,688 KB
testcase_03 AC 141 ms
54,376 KB
testcase_04 AC 126 ms
53,956 KB
testcase_05 AC 135 ms
53,824 KB
testcase_06 AC 146 ms
54,028 KB
testcase_07 AC 146 ms
54,004 KB
testcase_08 AC 145 ms
53,168 KB
testcase_09 AC 148 ms
54,392 KB
testcase_10 AC 105 ms
53,928 KB
testcase_11 AC 107 ms
53,844 KB
testcase_12 AC 139 ms
54,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Test {
	public static void main(String[] args) throws Exception {
		Scanner in = new Scanner(System.in);
		String sen = in.next();
		int n = sen.length();
		char[] senArr = sen.toCharArray();
		for(int i=0; i<n; i++) {
			for(int j=0; j<n; j++) {
				if(senArr[j] == 'A') {
					senArr[j] = 'Z';
				} else {
					senArr[j] = (char)(senArr[j] - 1);
				}
			}
			System.out.print(senArr[i]);
		}
	}
}
0