結果

問題 No.18 うーさー暗号
ユーザー yy05853yy05853
提出日時 2018-11-22 00:06:34
言語 Java
(openjdk 23)
結果
AC  
実行時間 127 ms / 5,000 ms
コード長 439 bytes
コンパイル時間 2,450 ms
コンパイル使用メモリ 74,568 KB
実行使用メモリ 41,252 KB
最終ジャッジ日時 2024-12-24 16:09:36
合計ジャッジ時間 4,759 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
41,048 KB
testcase_01 AC 113 ms
41,012 KB
testcase_02 AC 116 ms
41,036 KB
testcase_03 AC 103 ms
40,204 KB
testcase_04 AC 117 ms
40,796 KB
testcase_05 AC 120 ms
41,048 KB
testcase_06 AC 118 ms
40,996 KB
testcase_07 AC 119 ms
41,252 KB
testcase_08 AC 114 ms
41,084 KB
testcase_09 AC 124 ms
40,836 KB
testcase_10 AC 108 ms
40,200 KB
testcase_11 AC 127 ms
41,160 KB
testcase_12 AC 119 ms
41,152 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