結果

問題 No.1335 1337
ユーザー tentententen
提出日時 2021-01-18 09:29:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 402 bytes
コンパイル時間 2,700 ms
コンパイル使用メモリ 74,156 KB
実行使用メモリ 41,424 KB
最終ジャッジ日時 2024-11-30 20:15:51
合計ジャッジ時間 6,053 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
40,904 KB
testcase_01 AC 128 ms
41,076 KB
testcase_02 AC 127 ms
41,032 KB
testcase_03 AC 128 ms
41,424 KB
testcase_04 AC 130 ms
41,220 KB
testcase_05 AC 127 ms
41,080 KB
testcase_06 AC 118 ms
40,832 KB
testcase_07 AC 133 ms
41,232 KB
testcase_08 AC 115 ms
41,144 KB
testcase_09 AC 130 ms
41,260 KB
testcase_10 AC 129 ms
41,208 KB
testcase_11 AC 133 ms
41,124 KB
testcase_12 AC 131 ms
41,352 KB
testcase_13 AC 131 ms
40,984 KB
testcase_14 AC 132 ms
40,972 KB
testcase_15 AC 133 ms
41,068 KB
testcase_16 AC 130 ms
41,116 KB
testcase_17 AC 129 ms
41,188 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