結果

問題 No.1335 1337
ユーザー tentententen
提出日時 2021-01-18 09:29:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 402 bytes
コンパイル時間 2,703 ms
コンパイル使用メモリ 74,184 KB
実行使用メモリ 54,220 KB
最終ジャッジ日時 2024-05-07 23:16:20
合計ジャッジ時間 6,011 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
54,020 KB
testcase_01 AC 120 ms
53,940 KB
testcase_02 AC 120 ms
54,076 KB
testcase_03 AC 123 ms
53,864 KB
testcase_04 AC 120 ms
53,988 KB
testcase_05 AC 123 ms
53,960 KB
testcase_06 AC 112 ms
52,956 KB
testcase_07 AC 110 ms
52,736 KB
testcase_08 AC 123 ms
54,220 KB
testcase_09 AC 120 ms
53,968 KB
testcase_10 AC 123 ms
54,040 KB
testcase_11 AC 122 ms
54,128 KB
testcase_12 AC 122 ms
53,876 KB
testcase_13 AC 121 ms
54,064 KB
testcase_14 AC 123 ms
54,056 KB
testcase_15 AC 124 ms
53,880 KB
testcase_16 AC 125 ms
54,000 KB
testcase_17 AC 121 ms
54,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		char[] trans = sc.next().toCharArray();
		StringBuilder sb = new StringBuilder();
		for (char c : sc.next().toCharArray()) {
		    if (c >= '0' && c <= '9') {
		        sb.append(trans[c - '0']);
		    } else {
		        sb.append(c);
		    }
		}
		System.out.println(sb);
	}
}
0