結果
問題 | No.3000 enuemu暗号 |
ユーザー | yagi2 |
提出日時 | 2017-04-25 18:44:31 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,224 bytes |
コンパイル時間 | 2,217 ms |
コンパイル使用メモリ | 77,932 KB |
実行使用メモリ | 53,760 KB |
最終ジャッジ日時 | 2024-09-13 09:06:07 |
合計ジャッジ時間 | 3,185 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 121 ms
40,996 KB |
testcase_01 | AC | 124 ms
41,276 KB |
testcase_02 | AC | 126 ms
40,884 KB |
testcase_03 | WA | - |
ソースコード
package yukicoder.No3000; import java.util.HashMap; import java.util.Map; import java.util.Scanner; public class Main { public static void main(String[] args) { Map<String, String> A = new HashMap<>(); A.put("p", "o"); A.put("f", "r"); A.put("n", "a"); A.put("o", "n"); A.put("v", "g"); A.put("u", "e"); A.put("a", "c"); A.put("x", "i"); A.put("q", "p"); A.put("w", "h"); A.put("f", "r"); //mbgrihcdejkolsty //bqsuftlmdxynzvwj A.put("m", "b"); A.put("b", "q"); A.put("g", "s"); A.put("r", "u"); A.put("i", "f"); A.put("h", "t"); A.put("c", "l"); A.put("d", "m"); A.put("e", "d"); A.put("j", "x"); A.put("k", "y"); A.put("o", "n"); A.put("l", "z"); A.put("s", "v"); A.put("t", "w"); A.put("y", "j"); Scanner sc = new Scanner(System.in); String S = sc.next(); StringBuilder ans = new StringBuilder(); for (String s : S.split("")) { ans.append(A.get(s)); } System.out.println(ans); // jkl -> xyz } }