結果

問題 No.1499 羊が、何匹だっけ
ユーザー noriocnorioc
提出日時 2024-08-13 22:40:10
言語 Elixir
(1.16.2)
結果
AC  
実行時間 729 ms / 2,000 ms
コード長 447 bytes
コンパイル時間 2,278 ms
コンパイル使用メモリ 63,580 KB
実行使用メモリ 54,152 KB
最終ジャッジ日時 2024-08-13 22:40:24
合計ジャッジ時間 10,802 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 628 ms
54,052 KB
testcase_01 AC 620 ms
53,552 KB
testcase_02 AC 704 ms
53,684 KB
testcase_03 AC 729 ms
54,152 KB
testcase_04 AC 698 ms
53,904 KB
testcase_05 AC 724 ms
53,808 KB
testcase_06 AC 651 ms
53,748 KB
testcase_07 AC 680 ms
53,812 KB
testcase_08 AC 650 ms
53,832 KB
testcase_09 AC 711 ms
53,764 KB
testcase_10 AC 648 ms
53,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def input, do: IO.read(:line) |> String.trim
  def ii, do: input() |> String.to_integer
  def li, do: input() |> String.split |> Enum.map(&String.to_integer/1)
  def yn(b), do: IO.puts(if b, do: "Yes", else: "No")

  def main do
    t = ii()

    for _ <- 1..t do
      s = input()
      res = Regex.replace(~r/\d+/, s, fn m ->
        x = String.to_integer(m) + 1
        "#{x}"
      end)
      IO.puts res
    end
  end
end
0