結果

問題 No.18 うーさー暗号
ユーザー ちよちゃんちよちゃん
提出日時 2016-06-06 17:24:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 170 ms / 5,000 ms
コード長 639 bytes
コンパイル時間 3,068 ms
コンパイル使用メモリ 77,848 KB
実行使用メモリ 54,400 KB
最終ジャッジ日時 2024-07-07 06:10:11
合計ジャッジ時間 5,666 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
54,124 KB
testcase_01 AC 123 ms
54,060 KB
testcase_02 AC 124 ms
53,996 KB
testcase_03 AC 155 ms
54,268 KB
testcase_04 AC 150 ms
54,076 KB
testcase_05 AC 154 ms
54,136 KB
testcase_06 AC 164 ms
54,160 KB
testcase_07 AC 170 ms
54,144 KB
testcase_08 AC 167 ms
54,340 KB
testcase_09 AC 163 ms
54,400 KB
testcase_10 AC 126 ms
54,084 KB
testcase_11 AC 131 ms
53,880 KB
testcase_12 AC 144 ms
52,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class Yuki7 {
	
	/*
	 * うーさー暗号
	 */
	public static void main(String[] args) {
		char[] arc = {'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z'};
		Scanner scan = new Scanner(System.in);
		String str = scan.next();
		scan.close();
			
		for (int i = 0; i < str.length(); i++) {
			for (int j =0; j < arc.length; j++ ) {
				
				if(str.charAt(i) == arc[j]){
					int num = (j-(i+1)%26);
					if(num < 0) {
						System.out.print(arc[26 + num]);
					} else {
						System.out.print(arc[num]);
					}
				}
			}
		}
	}
}
0