結果

問題 No.1335 1337
ユーザー ks2mks2m
提出日時 2021-01-15 21:26:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 403 bytes
コンパイル時間 2,759 ms
コンパイル使用メモリ 74,708 KB
実行使用メモリ 41,520 KB
最終ジャッジ日時 2024-05-04 22:41:36
合計ジャッジ時間 5,240 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,036 KB
testcase_01 AC 124 ms
41,264 KB
testcase_02 AC 126 ms
40,764 KB
testcase_03 AC 125 ms
41,392 KB
testcase_04 AC 128 ms
41,272 KB
testcase_05 AC 130 ms
41,080 KB
testcase_06 AC 136 ms
41,020 KB
testcase_07 AC 131 ms
40,868 KB
testcase_08 AC 123 ms
41,192 KB
testcase_09 AC 140 ms
41,400 KB
testcase_10 AC 124 ms
41,340 KB
testcase_11 AC 130 ms
41,008 KB
testcase_12 AC 125 ms
41,112 KB
testcase_13 AC 124 ms
41,192 KB
testcase_14 AC 112 ms
40,052 KB
testcase_15 AC 124 ms
41,056 KB
testcase_16 AC 129 ms
41,268 KB
testcase_17 AC 129 ms
41,520 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