結果

問題 No.18 うーさー暗号
ユーザー masuyuumasuyuu
提出日時 2020-09-17 22:12:56
言語 Java
(openjdk 23)
結果
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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

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