結果

問題 No.721 Die tertia (ディエ・テルツィア)
ユーザー getty104getty104
提出日時 2018-09-11 15:57:25
言語 Elixir
(1.18.1)
結果
AC  
実行時間 578 ms / 2,000 ms
コード長 294 bytes
コンパイル時間 1,051 ms
コンパイル使用メモリ 64,832 KB
実行使用メモリ 56,832 KB
最終ジャッジ日時 2024-12-31 02:23:46
合計ジャッジ時間 14,087 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 556 ms
54,904 KB
testcase_01 AC 553 ms
54,808 KB
testcase_02 AC 550 ms
54,120 KB
testcase_03 AC 558 ms
54,396 KB
testcase_04 AC 554 ms
54,388 KB
testcase_05 AC 555 ms
54,324 KB
testcase_06 AC 550 ms
55,044 KB
testcase_07 AC 553 ms
55,416 KB
testcase_08 AC 557 ms
54,368 KB
testcase_09 AC 549 ms
55,256 KB
testcase_10 AC 578 ms
54,556 KB
testcase_11 AC 560 ms
55,256 KB
testcase_12 AC 554 ms
54,412 KB
testcase_13 AC 550 ms
54,692 KB
testcase_14 AC 553 ms
54,540 KB
testcase_15 AC 551 ms
54,244 KB
testcase_16 AC 562 ms
54,500 KB
testcase_17 AC 548 ms
56,832 KB
testcase_18 AC 552 ms
54,536 KB
testcase_19 AC 556 ms
54,588 KB
testcase_20 AC 550 ms
54,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    [year, month, day] = IO.gets("") |> String.trim |> String.split("/") |> Enum.map(&String.to_integer/1)
    {:ok, date} = Date.new(year, month, day)
    next_day = Date.add(date, 2) |> Date.to_string
    IO.puts Regex.replace(~r/-/, next_day, "/")
  end
end

0