結果

問題 No.18 うーさー暗号
ユーザー YOSHIYOSHI
提出日時 2021-02-17 11:53:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 413 bytes
コンパイル時間 3,382 ms
コンパイル使用メモリ 74,484 KB
実行使用メモリ 54,248 KB
最終ジャッジ日時 2024-09-13 23:02:14
合計ジャッジ時間 5,919 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
53,976 KB
testcase_01 AC 127 ms
53,984 KB
testcase_02 AC 124 ms
54,248 KB
testcase_03 AC 128 ms
54,080 KB
testcase_04 AC 128 ms
53,980 KB
testcase_05 AC 126 ms
53,724 KB
testcase_06 AC 130 ms
53,940 KB
testcase_07 AC 129 ms
54,108 KB
testcase_08 AC 129 ms
54,176 KB
testcase_09 AC 115 ms
52,984 KB
testcase_10 AC 113 ms
52,712 KB
testcase_11 AC 129 ms
54,060 KB
testcase_12 AC 129 ms
53,868 KB
権限があれば一括ダウンロードができます

ソースコード

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) % 26) + 'A') % 26 + 'A');
		}

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

		scan.close();

	}

}
0