結果

問題 No.1335 1337
ユーザー ks2mks2m
提出日時 2021-01-15 21:26:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 403 bytes
コンパイル時間 2,176 ms
コンパイル使用メモリ 75,180 KB
実行使用メモリ 41,076 KB
最終ジャッジ日時 2024-11-26 13:17:06
合計ジャッジ時間 4,784 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
40,500 KB
testcase_01 AC 99 ms
39,488 KB
testcase_02 AC 104 ms
40,620 KB
testcase_03 AC 110 ms
41,056 KB
testcase_04 AC 99 ms
39,620 KB
testcase_05 AC 100 ms
40,008 KB
testcase_06 AC 110 ms
40,152 KB
testcase_07 AC 111 ms
40,760 KB
testcase_08 AC 111 ms
40,632 KB
testcase_09 AC 103 ms
40,192 KB
testcase_10 AC 100 ms
40,080 KB
testcase_11 AC 106 ms
40,940 KB
testcase_12 AC 110 ms
40,768 KB
testcase_13 AC 107 ms
40,656 KB
testcase_14 AC 111 ms
41,076 KB
testcase_15 AC 111 ms
40,980 KB
testcase_16 AC 112 ms
40,852 KB
testcase_17 AC 101 ms
40,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		char[] a = sc.next().toCharArray();
		char[] s = sc.next().toCharArray();
		sc.close();

		for (int i = 0; i < s.length; i++) {
			if ('0' <= s[i] && s[i] <= '9') {
				System.out.print(a[s[i] - '0']);
			} else {
				System.out.print(s[i]);
			}
		}
	}
}
0