結果

問題 No.296 n度寝
ユーザー gemmarogemmaro
提出日時 2020-04-16 20:36:16
言語 Elixir
(1.16.2)
結果
WA  
実行時間 -
コード長 278 bytes
コンパイル時間 1,000 ms
コンパイル使用メモリ 62,880 KB
実行使用メモリ 56,052 KB
最終ジャッジ日時 2024-06-09 23:27:38
合計ジャッジ時間 12,440 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 618 ms
54,356 KB
testcase_04 AC 626 ms
54,256 KB
testcase_05 AC 630 ms
53,992 KB
testcase_06 AC 636 ms
54,104 KB
testcase_07 AC 632 ms
54,044 KB
testcase_08 WA -
testcase_09 AC 626 ms
54,108 KB
testcase_10 AC 628 ms
55,460 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 618 ms
54,428 KB
testcase_14 WA -
testcase_15 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

  defp solve([n, h, m, t]) do
    [(h + (m |> div(60))) |> rem(24), (m + (n - 1) * t) |> rem(60)]
    |> Enum.join("\n")
  end
end
0