結果

問題 No.18 うーさー暗号
ユーザー yy05853yy05853
提出日時 2018-11-22 00:06:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 5,000 ms
コード長 439 bytes
コンパイル時間 1,912 ms
コンパイル使用メモリ 73,956 KB
実行使用メモリ 54,148 KB
最終ジャッジ日時 2024-06-06 21:40:01
合計ジャッジ時間 4,033 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
52,352 KB
testcase_01 AC 106 ms
53,876 KB
testcase_02 AC 122 ms
54,148 KB
testcase_03 AC 100 ms
52,804 KB
testcase_04 AC 114 ms
54,036 KB
testcase_05 AC 114 ms
53,908 KB
testcase_06 AC 122 ms
54,000 KB
testcase_07 AC 107 ms
52,732 KB
testcase_08 AC 117 ms
53,872 KB
testcase_09 AC 121 ms
54,132 KB
testcase_10 AC 117 ms
53,888 KB
testcase_11 AC 114 ms
53,880 KB
testcase_12 AC 113 ms
53,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String args[]) {
		Scanner sc = new Scanner(System.in);
		
		String line = sc.next();
		int len = line.length();
		
		char[] retsu = new char[len];
		retsu = line.toCharArray();
		
		for(int i = 0; i < len; i++) {
			int moji = (int)retsu[i] - (i + 1) % 26;
			retsu[i] = (char)moji;
			if(retsu[i] < 65)
				retsu[i] += 26;
		}
		
		System.out.println(retsu);
	}
}

0