結果

問題 No.651 E869120 and Driving
ユーザー noriocnorioc
提出日時 2024-11-19 03:02:43
言語 Elixir
(1.16.2)
結果
AC  
実行時間 667 ms / 1,000 ms
コード長 385 bytes
コンパイル時間 4,994 ms
コンパイル使用メモリ 61,344 KB
実行使用メモリ 54,840 KB
最終ジャッジ日時 2024-11-19 03:02:56
合計ジャッジ時間 12,817 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 635 ms
53,800 KB
testcase_01 AC 667 ms
54,056 KB
testcase_02 AC 636 ms
54,276 KB
testcase_03 AC 652 ms
53,552 KB
testcase_04 AC 657 ms
53,684 KB
testcase_05 AC 640 ms
53,768 KB
testcase_06 AC 640 ms
53,816 KB
testcase_07 AC 645 ms
53,844 KB
testcase_08 AC 636 ms
54,840 KB
testcase_09 AC 641 ms
53,964 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
    a = ii()

    t = div(a * 60, 100) + 10 * 60
    h = div(t, 60)
    m = rem(t, 60)
    :io.format("~B:~2..0B~n", [h, m])
  end
end
0