結果

問題 No.18 うーさー暗号
ユーザー masuyuumasuyuu
提出日時 2020-09-17 22:12:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 162 ms / 5,000 ms
コード長 579 bytes
コンパイル時間 2,422 ms
コンパイル使用メモリ 74,596 KB
実行使用メモリ 54,340 KB
最終ジャッジ日時 2024-06-22 06:54:31
合計ジャッジ時間 4,063 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
53,200 KB
testcase_01 AC 101 ms
53,064 KB
testcase_02 AC 103 ms
52,744 KB
testcase_03 AC 162 ms
54,136 KB
testcase_04 AC 131 ms
54,168 KB
testcase_05 AC 129 ms
54,032 KB
testcase_06 AC 147 ms
53,520 KB
testcase_07 AC 151 ms
54,340 KB
testcase_08 AC 144 ms
54,200 KB
testcase_09 AC 145 ms
54,024 KB
testcase_10 AC 102 ms
52,552 KB
testcase_11 AC 121 ms
53,968 KB
testcase_12 AC 132 ms
52,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main{
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String s = sc.next();
		char[] a = s.toCharArray();
		char[] c = {'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'};
		int y = 0;
		for(int i=0;i<a.length;i++) {
			for(int x=0;x<c.length;x++) {
			if(a[i]==c[x]) {
				if(x-i-1<0) {
					y=0;
					while(x-i-1+y<0) {
						y+=c.length;
					}
					System.out.print(c[x-i-1+y]);
				}else {
				System.out.print(c[x-i-1]);
				}
			}
			}
		}
	}
}
0