結果

問題 No.18 うーさー暗号
ユーザー TakaTaka
提出日時 2016-11-07 19:54:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 161 ms / 5,000 ms
コード長 525 bytes
コンパイル時間 1,902 ms
コンパイル使用メモリ 75,200 KB
実行使用メモリ 54,312 KB
最終ジャッジ日時 2024-07-07 06:21:56
合計ジャッジ時間 4,343 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
52,968 KB
testcase_01 AC 97 ms
52,924 KB
testcase_02 AC 114 ms
53,760 KB
testcase_03 AC 161 ms
54,204 KB
testcase_04 AC 133 ms
54,048 KB
testcase_05 AC 136 ms
54,284 KB
testcase_06 AC 139 ms
53,236 KB
testcase_07 AC 143 ms
54,116 KB
testcase_08 AC 160 ms
53,980 KB
testcase_09 AC 155 ms
54,312 KB
testcase_10 AC 114 ms
54,188 KB
testcase_11 AC 113 ms
54,016 KB
testcase_12 AC 127 ms
52,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.Arrays;
class a{
    public static void main(String[] b){
        Scanner sc=new Scanner(System.in);
		String a=sc.next();
		
		int t[]=new int[a.length()];
		char u[]=new char[a.length()];
		Arrays.fill(t,0);
		
		int n;
		for(int i=0;i<a.length();i++){
			n=a.charAt(i);
			t[i]=n-i-1;
			if(t[i]<65){
				do{
					t[i]+=26;
				}while(t[i]<65);
				
			}
			u[i]=(char)t[i];
		}
		
		for(int i=0; i<a.length(); i++){
			System.out.print(u[i]);
		}
		System.out.println();
    }
}
0