結果

問題 No.721 Die tertia (ディエ・テルツィア)
ユーザー gemmarogemmaro
提出日時 2020-04-16 10:36:21
言語 Elixir
(1.18.1)
結果
AC  
実行時間 549 ms / 2,000 ms
コード長 1,546 bytes
コンパイル時間 998 ms
コンパイル使用メモリ 63,304 KB
実行使用メモリ 56,328 KB
最終ジャッジ日時 2024-12-31 04:09:53
合計ジャッジ時間 13,807 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 537 ms
53,824 KB
testcase_01 AC 537 ms
54,964 KB
testcase_02 AC 543 ms
56,328 KB
testcase_03 AC 547 ms
54,940 KB
testcase_04 AC 538 ms
54,276 KB
testcase_05 AC 546 ms
54,296 KB
testcase_06 AC 543 ms
54,040 KB
testcase_07 AC 538 ms
54,280 KB
testcase_08 AC 536 ms
54,260 KB
testcase_09 AC 545 ms
54,236 KB
testcase_10 AC 543 ms
54,728 KB
testcase_11 AC 541 ms
54,404 KB
testcase_12 AC 539 ms
54,136 KB
testcase_13 AC 549 ms
54,164 KB
testcase_14 AC 542 ms
53,876 KB
testcase_15 AC 543 ms
53,852 KB
testcase_16 AC 544 ms
54,612 KB
testcase_17 AC 540 ms
54,924 KB
testcase_18 AC 533 ms
54,440 KB
testcase_19 AC 542 ms
53,908 KB
testcase_20 AC 538 ms
53,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    IO.read(:line)
    |> String.trim()
    |> String.split("/")
    |> Enum.map(&String.to_integer/1)
    |> solve
    |> IO.puts()
  end

  defp solve([year, month, day]) do
    [year, month, day + 2]
    |> fix_day_and_month
    |> fix_month_and_year
    |> format_result
  end

  defp fix_day_and_month([year, month, day]) when month == 2 do
    cond do
      uruh?(year) && day > 29 ->
        [year, month + 1, day - 29]

      !uruh?(year) && day > months(month - 1) ->
        [year, month + 1, day - months(month - 1)]

      true ->
        [year, month, day]
    end
  end

  defp fix_day_and_month([year, month, day]) do
    cond do
      day > months(month - 1) ->
        [year, month + 1, day - months(month - 1)]

      true ->
        [year, month, day]
    end
  end

  defp fix_month_and_year([year, month, day]) do
    cond do
      month > 12 -> [year + 1, month - 12, day]
      true -> [year, month, day]
    end
  end

  defp uruh?(year) do
    rem(year, 4) == 0 &&
      (!(year |> rem(100) == 0) ||
         year |> rem(400) == 0)
  end

  defp months(month) do
    [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]
    |> Enum.at(month)
  end

  defp format_result([year, month, day]) do
    [year, month, day]
    |> Enum.map(&to_string/1)
    |> (fn [year, month, day] ->
          [
            year |> String.pad_leading(4, "0"),
            month |> String.pad_leading(2, "0"),
            day |> String.pad_leading(2, "0")
          ]
        end).()
    |> Enum.join("/")
  end
end
0