結果

問題 No.18 うーさー暗号
ユーザー YOSHIYOSHI
提出日時 2021-02-17 11:47:51
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 406 bytes
コンパイル時間 4,071 ms
コンパイル使用メモリ 74,404 KB
実行使用メモリ 54,232 KB
最終ジャッジ日時 2024-09-13 22:58:34
合計ジャッジ時間 6,610 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,076 KB
testcase_01 AC 129 ms
41,316 KB
testcase_02 AC 128 ms
41,328 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 130 ms
40,784 KB
testcase_11 AC 129 ms
41,208 KB
testcase_12 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No00000018_Main {

	public static void main(String[] args) {

		Scanner scan = new Scanner(System.in);

		char[] charA = scan.nextLine().toCharArray();
		char[] charB = new char[charA.length];

		for(int i = 0; i < charA.length; i++) {
			charB[i] = (char)((charA[i] - (i + 1) + 'A') % 26 + 'A');
		}

		System.out.println(new String(charB));

		scan.close();

	}

}
0