結果

問題 No.18 うーさー暗号
ユーザー k_kadorak_kadora
提出日時 2015-06-11 00:36:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 114 ms / 5,000 ms
コード長 320 bytes
コンパイル時間 3,728 ms
コンパイル使用メモリ 74,288 KB
実行使用メモリ 54,272 KB
最終ジャッジ日時 2024-07-07 05:44:41
合計ジャッジ時間 5,059 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
52,908 KB
testcase_01 AC 107 ms
53,864 KB
testcase_02 AC 104 ms
53,768 KB
testcase_03 AC 112 ms
54,112 KB
testcase_04 AC 114 ms
54,060 KB
testcase_05 AC 106 ms
53,948 KB
testcase_06 AC 109 ms
54,084 KB
testcase_07 AC 94 ms
52,836 KB
testcase_08 AC 111 ms
54,004 KB
testcase_09 AC 109 ms
53,932 KB
testcase_10 AC 107 ms
53,660 KB
testcase_11 AC 110 ms
54,272 KB
testcase_12 AC 112 ms
53,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Usa{
	public static void main(String[] arg){
		Scanner sc = new Scanner(System.in);
		char temp;
		char[] c = sc.next().toCharArray();
		for(int i = 0;i<c.length;i++){
			c[i] -= (i+1)%('Z'-'A' + 1);
			if(c[i]<'A')c[i]+='Z'-'A'+1;
		}
		System.out.println(String.valueOf(c));
	}
}
0