結果
問題 | No.1335 1337 |
ユーザー | Lisp_Coder |
提出日時 | 2023-04-20 14:02:53 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 23 ms / 2,000 ms |
コード長 | 2,492 bytes |
コンパイル時間 | 849 ms |
コンパイル使用メモリ | 105,856 KB |
実行使用メモリ | 17,664 KB |
最終ジャッジ日時 | 2024-10-15 12:19:58 |
合計ジャッジ時間 | 1,907 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 23 ms
17,536 KB |
testcase_01 | AC | 21 ms
17,536 KB |
testcase_02 | AC | 21 ms
17,408 KB |
testcase_03 | AC | 22 ms
17,536 KB |
testcase_04 | AC | 22 ms
17,408 KB |
testcase_05 | AC | 21 ms
17,536 KB |
testcase_06 | AC | 21 ms
17,536 KB |
testcase_07 | AC | 20 ms
17,536 KB |
testcase_08 | AC | 21 ms
17,408 KB |
testcase_09 | AC | 22 ms
17,536 KB |
testcase_10 | AC | 22 ms
17,536 KB |
testcase_11 | AC | 21 ms
17,664 KB |
testcase_12 | AC | 21 ms
17,408 KB |
testcase_13 | AC | 20 ms
17,536 KB |
testcase_14 | AC | 21 ms
17,536 KB |
testcase_15 | AC | 20 ms
17,280 KB |
testcase_16 | AC | 22 ms
17,280 KB |
testcase_17 | AC | 23 ms
17,408 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
/* For each number from 0 to 9, one lowercase alphabet letter is associated with the number. The correspondence is denoted by the 10-character alphabetical sequence A, which indicates that the number i corresponds to the letter A_i. Given a string S consisting of lowercase letters and digits, translate it into alphabetic characters according to the correspondence given by A and output the resulting string T. */ using System; using System.Linq; using Internal; using System.Collections.Generic; using System.Text; class Scanner { string[] s; int i; char[] cs = new char[] { ' ' }; public Scanner() { s = new string[0]; i = 0; } public string Next() { if (i < s.Length) return s[i++]; string st = Console.ReadLine(); while (st == "") st = Console.ReadLine(); s = st.Split(cs, StringSplitOptions.RemoveEmptyEntries); if (s.Length == 0) return Next(); i = 0; return s[i++]; } public int NextInt() { return int.Parse(Next()); } public long NextLong() { return long.Parse(Next()); } public double NextDouble() { return double.Parse(Next()); } public ulong NextUlong() { return ulong.Parse(Next()); } public decimal NextDecimal() { return decimal.Parse(Next()); } public int[] ArrayInt(int N, int add = 0) { int[] Array = new int[N]; for (int i = 0; i < N; i++) { Array[i] = NextInt() + add; } return Array; } public double[] ArrayDouble(int N, double add = 0) { double[] Array = new double[N]; for (int i = 0; i < N; i++) { Array[i] = NextDouble() + add; } return Array; } public long[] ArrayLong(long N, long add = 0) { long[] Array = new long[N]; for (long i = 0; i < N; i++) { Array[i] = NextLong() + add; } return Array; } } class Program { static void Main() { Scanner sc = new Scanner(); string a = sc.Next(); string s = sc.Next(); string ans = ""; for (int i = 0; i < s.Length; i++) { if (s[i] >= '0' && s[i] <= '9') { ans += a[s[i] - '0']; } else { ans += s[i]; } } Console.WriteLine(ans); } }