結果

問題 No.3000 enuemu暗号
ユーザー mits58mits58
提出日時 2016-07-02 22:28:46
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 352 bytes
コンパイル時間 2,087 ms
コンパイル使用メモリ 74,108 KB
実行使用メモリ 52,680 KB
最終ジャッジ日時 2024-10-12 01:25:07
合計ジャッジ時間 3,080 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,280 KB
testcase_01 AC 123 ms
41,176 KB
testcase_02 WA -
testcase_03 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String str="cqimdrstfxyzbanopuvweghijk";
		while(sc.hasNext()){
			String s=sc.next();
			for(int i=0;i<s.length();i++){
				int a=s.charAt(i)-'a';
				System.out.print(str.charAt(a));
			}
			System.out.println();
		}
	}
}
0