結果

問題 No.1335 1337
ユーザー さかぽんさかぽん
提出日時 2021-02-19 10:04:22
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 226 bytes
コンパイル時間 5,534 ms
コンパイル使用メモリ 105,020 KB
実行使用メモリ 22,720 KB
最終ジャッジ日時 2023-10-13 21:13:00
合計ジャッジ時間 7,446 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
20,544 KB
testcase_01 AC 51 ms
20,572 KB
testcase_02 AC 51 ms
20,636 KB
testcase_03 AC 51 ms
22,576 KB
testcase_04 AC 52 ms
18,636 KB
testcase_05 AC 52 ms
22,616 KB
testcase_06 AC 53 ms
20,552 KB
testcase_07 AC 53 ms
20,604 KB
testcase_08 AC 52 ms
20,520 KB
testcase_09 AC 52 ms
20,668 KB
testcase_10 AC 53 ms
20,484 KB
testcase_11 AC 52 ms
20,672 KB
testcase_12 AC 52 ms
20,588 KB
testcase_13 AC 53 ms
20,644 KB
testcase_14 AC 52 ms
20,564 KB
testcase_15 AC 53 ms
22,720 KB
testcase_16 AC 52 ms
20,640 KB
testcase_17 AC 54 ms
22,616 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

class A
{
	static void Main()
	{
		var a = Console.ReadLine();
		var s = Console.ReadLine();
		Console.WriteLine(string.Join("", Array.ConvertAll(s.ToCharArray(), c => char.IsNumber(c) ? a[c - '0'] : c)));
	}
}
0