結果

問題 No.1335 1337
ユーザー cccccc
提出日時 2022-09-07 22:44:17
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 653 bytes
コンパイル時間 10,692 ms
コンパイル使用メモリ 168,524 KB
実行使用メモリ 183,164 KB
最終ジャッジ日時 2024-05-02 19:49:20
合計ジャッジ時間 12,677 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
29,164 KB
testcase_01 AC 49 ms
29,184 KB
testcase_02 AC 50 ms
29,300 KB
testcase_03 AC 45 ms
27,008 KB
testcase_04 AC 50 ms
29,184 KB
testcase_05 AC 47 ms
27,008 KB
testcase_06 AC 51 ms
29,184 KB
testcase_07 AC 54 ms
29,312 KB
testcase_08 AC 52 ms
29,184 KB
testcase_09 AC 51 ms
29,168 KB
testcase_10 AC 51 ms
29,184 KB
testcase_11 AC 51 ms
29,440 KB
testcase_12 AC 50 ms
29,148 KB
testcase_13 AC 50 ms
29,180 KB
testcase_14 AC 51 ms
29,392 KB
testcase_15 AC 50 ms
29,184 KB
testcase_16 AC 50 ms
28,908 KB
testcase_17 AC 50 ms
183,164 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (90 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using System.IO;
using System.Linq;

namespace ConsoleApp4
{
    class Program
    {
        static void Main()
        {
            var A = Console.ReadLine();
            var S = Console.ReadLine();
            var _tmp = new List<char>();

            foreach(var s in S)
            {
                if ( s >= '0' && s <= '9')
                {
                    var sInt = int.Parse(s.ToString());
                    _tmp.Add(A[sInt]);
                }
                else
                {
                    _tmp.Add(s);
                }
            }
            Console.WriteLine(String.Join("", _tmp));
        }
    }
}
0