結果

問題 No.18 うーさー暗号
ユーザー omc-testomc-test
提出日時 2016-08-04 11:42:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 171 ms / 5,000 ms
コード長 387 bytes
コンパイル時間 3,579 ms
コンパイル使用メモリ 74,316 KB
実行使用メモリ 54,496 KB
最終ジャッジ日時 2024-07-07 06:13:11
合計ジャッジ時間 5,541 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
54,136 KB
testcase_01 AC 108 ms
52,616 KB
testcase_02 AC 124 ms
54,228 KB
testcase_03 AC 171 ms
54,332 KB
testcase_04 AC 144 ms
54,308 KB
testcase_05 AC 156 ms
54,496 KB
testcase_06 AC 138 ms
52,988 KB
testcase_07 AC 165 ms
54,424 KB
testcase_08 AC 153 ms
54,448 KB
testcase_09 AC 161 ms
54,248 KB
testcase_10 AC 125 ms
54,180 KB
testcase_11 AC 129 ms
54,176 KB
testcase_12 AC 145 ms
54,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class No0018 {
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		String s = sc.nextLine();
		for(int i=0; i<s.length(); i++){
			char c = s.charAt(i);
			int a = (int)c - (i%26) - 1;
			if(a >= 65 && a <= 90){
				c = (char)a;
			}else{
				c = (char)(a + 26);
			}
			System.out.print(c);
		}
		System.out.println();
	}
}
0