結果

問題 No.18 うーさー暗号
ユーザー sasakkisasakki
提出日時 2016-04-08 16:46:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 5,000 ms
コード長 582 bytes
コンパイル時間 1,989 ms
コンパイル使用メモリ 76,260 KB
実行使用メモリ 53,976 KB
最終ジャッジ日時 2024-07-07 06:05:19
合計ジャッジ時間 4,011 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
53,908 KB
testcase_01 AC 103 ms
53,784 KB
testcase_02 AC 98 ms
52,936 KB
testcase_03 AC 111 ms
53,828 KB
testcase_04 AC 125 ms
53,800 KB
testcase_05 AC 110 ms
52,760 KB
testcase_06 AC 113 ms
53,968 KB
testcase_07 AC 120 ms
53,652 KB
testcase_08 AC 115 ms
53,964 KB
testcase_09 AC 122 ms
53,976 KB
testcase_10 AC 96 ms
52,696 KB
testcase_11 AC 104 ms
53,816 KB
testcase_12 AC 120 ms
53,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class main{
    public static void main(String args[]){
	Scanner scan = new Scanner(System.in);
	String str = scan.next();

	char c = 'A';

	String wooser = "";

	for(int i = 0; i < str.length(); i++){
	    int no = i + 1;

	    char ch = str.charAt(i);
	    
	    if(no > 26){
		for(;;){
		    if(no < 26){
			break;
		    }
		    else{
			no -= 26;
		    }
		}
	    }

	    ch -= no;

	    if( (int)ch < 65 ){
		ch += 26;
	    }

	    String str_ch = String.valueOf(ch);

	    wooser = wooser + str_ch;

	}
	
	System.out.println(wooser);
	
    }
    
}
0