結果

問題 No.1335 1337
ユーザー Yosuke YamaguchiYosuke Yamaguchi
提出日時 2021-01-28 23:24:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 813 bytes
コンパイル時間 4,348 ms
コンパイル使用メモリ 83,316 KB
実行使用メモリ 42,128 KB
最終ジャッジ日時 2024-06-26 07:07:49
合計ジャッジ時間 7,679 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,048 KB
testcase_01 AC 135 ms
41,248 KB
testcase_02 AC 125 ms
41,016 KB
testcase_03 AC 135 ms
40,876 KB
testcase_04 AC 119 ms
40,452 KB
testcase_05 AC 136 ms
41,476 KB
testcase_06 AC 158 ms
42,128 KB
testcase_07 AC 135 ms
41,508 KB
testcase_08 AC 135 ms
41,284 KB
testcase_09 AC 138 ms
41,212 KB
testcase_10 AC 132 ms
41,076 KB
testcase_11 AC 134 ms
41,156 KB
testcase_12 AC 135 ms
41,376 KB
testcase_13 AC 123 ms
39,932 KB
testcase_14 AC 121 ms
40,148 KB
testcase_15 AC 121 ms
40,200 KB
testcase_16 AC 135 ms
40,996 KB
testcase_17 AC 135 ms
40,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.List;
import java.util.Scanner;
import java.util.stream.Collectors;

// https://yukicoder.me/problems/no/1335
public class Alphabet1337_1335 {
  public static void main(String[] args) {
    // 標準入力から読み込む際に、Scan
    Scanner sc = new Scanner(System.in);

    List<String> alphabetList = Arrays.asList(sc.next().split(""));
    List<String> inputList = Arrays.asList(sc.next().split(""));

    System.out
        .println(inputList.stream().map(s -> replaceNumberToAlphabet(s, alphabetList)).collect(Collectors.joining()));
  }

  private static String replaceNumberToAlphabet(String n, List<String> alphaList) {
    if (n.matches("[+-]?\\d*(\\.\\d+)?")) {
      int i = Integer.parseInt(n);
      return alphaList.get(i);
    }
    return n;
  }
}
0