結果

問題 No.18 うーさー暗号
ユーザー discoNekodiscoNeko
提出日時 2016-04-29 00:02:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 49 ms / 5,000 ms
コード長 527 bytes
コンパイル時間 2,124 ms
コンパイル使用メモリ 74,276 KB
実行使用メモリ 50,276 KB
最終ジャッジ日時 2024-07-07 06:06:24
合計ジャッジ時間 2,893 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
49,872 KB
testcase_01 AC 47 ms
50,044 KB
testcase_02 AC 47 ms
50,096 KB
testcase_03 AC 46 ms
50,052 KB
testcase_04 AC 47 ms
50,020 KB
testcase_05 AC 46 ms
50,124 KB
testcase_06 AC 49 ms
50,072 KB
testcase_07 AC 46 ms
49,984 KB
testcase_08 AC 45 ms
49,892 KB
testcase_09 AC 46 ms
50,276 KB
testcase_10 AC 46 ms
50,140 KB
testcase_11 AC 45 ms
50,132 KB
testcase_12 AC 46 ms
50,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.*;
import java.math.*;
 
public class Main {
	public static void main(String[] args)throws IOException{
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		StringBuilder sb = new StringBuilder();
		String a = br.readLine();
		int l = a.length();
		for(int i = 0; i < l; i++){
			char c = a.charAt(i);
			c -= (i+1)%26;
			if(c<'A')c += 26;
			sb.append(c);
		}
		System.out.println(sb);
	}
}
0