結果

問題 No.18 うーさー暗号
ユーザー mits58mits58
提出日時 2016-07-02 00:23:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 5,000 ms
コード長 335 bytes
コンパイル時間 1,939 ms
コンパイル使用メモリ 74,232 KB
実行使用メモリ 54,500 KB
最終ジャッジ日時 2024-07-07 06:11:54
合計ジャッジ時間 3,873 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
54,076 KB
testcase_01 AC 90 ms
54,044 KB
testcase_02 AC 106 ms
53,768 KB
testcase_03 AC 144 ms
53,904 KB
testcase_04 AC 120 ms
53,960 KB
testcase_05 AC 130 ms
54,500 KB
testcase_06 AC 137 ms
53,852 KB
testcase_07 AC 140 ms
53,664 KB
testcase_08 AC 140 ms
54,072 KB
testcase_09 AC 140 ms
53,968 KB
testcase_10 AC 107 ms
53,988 KB
testcase_11 AC 109 ms
53,876 KB
testcase_12 AC 136 ms
54,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		while(sc.hasNext()){
			String str=sc.next();
			for(int i=0;i<str.length();i++){
				int t=str.charAt(i)-'A'-i+25+26*100;
				t%=26;
				System.out.print((char)(t+'A'));
			}
			System.out.println();
		}
	}
}
0