結果

問題 No.721 Die tertia (ディエ・テルツィア)
ユーザー getty104getty104
提出日時 2018-09-11 15:57:25
言語 Elixir
(1.16.2)
結果
AC  
実行時間 569 ms / 2,000 ms
コード長 294 bytes
コンパイル時間 1,030 ms
コンパイル使用メモリ 63,744 KB
実行使用メモリ 56,180 KB
最終ジャッジ日時 2024-06-09 22:15:18
合計ジャッジ時間 13,932 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 555 ms
55,676 KB
testcase_01 AC 556 ms
54,544 KB
testcase_02 AC 564 ms
54,368 KB
testcase_03 AC 561 ms
54,448 KB
testcase_04 AC 545 ms
55,072 KB
testcase_05 AC 565 ms
54,484 KB
testcase_06 AC 547 ms
54,240 KB
testcase_07 AC 565 ms
54,492 KB
testcase_08 AC 547 ms
54,264 KB
testcase_09 AC 555 ms
55,164 KB
testcase_10 AC 569 ms
54,636 KB
testcase_11 AC 550 ms
55,520 KB
testcase_12 AC 551 ms
55,572 KB
testcase_13 AC 540 ms
55,396 KB
testcase_14 AC 557 ms
56,180 KB
testcase_15 AC 545 ms
54,376 KB
testcase_16 AC 550 ms
54,684 KB
testcase_17 AC 563 ms
54,488 KB
testcase_18 AC 549 ms
55,308 KB
testcase_19 AC 562 ms
54,264 KB
testcase_20 AC 552 ms
54,196 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