結果

問題 No.18 うーさー暗号
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-10-24 00:20:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 53 ms / 5,000 ms
コード長 472 bytes
コンパイル時間 3,233 ms
コンパイル使用メモリ 73,344 KB
実行使用メモリ 37,040 KB
最終ジャッジ日時 2024-07-07 06:39:21
合計ジャッジ時間 4,456 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,732 KB
testcase_01 AC 51 ms
36,844 KB
testcase_02 AC 51 ms
37,040 KB
testcase_03 AC 51 ms
36,960 KB
testcase_04 AC 50 ms
36,728 KB
testcase_05 AC 52 ms
36,728 KB
testcase_06 AC 52 ms
36,832 KB
testcase_07 AC 51 ms
36,884 KB
testcase_08 AC 53 ms
36,724 KB
testcase_09 AC 52 ms
36,604 KB
testcase_10 AC 52 ms
36,736 KB
testcase_11 AC 52 ms
36,704 KB
testcase_12 AC 52 ms
36,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No18 {
	public static void main(String args[]) throws IOException{
		String str = new BufferedReader(new InputStreamReader(System.in)).readLine();
		byte[] inputToNum = str.getBytes();
		for(int i=0; i<str.length(); i++){
			inputToNum[i] -= (i+1) % 26;
			if(inputToNum[i] < 65){
				inputToNum[i] += 26;
			}
		}
		System.out.println(new String(inputToNum));
	}
}
0