結果

問題 No.651 E869120 and Driving
ユーザー gemmarogemmaro
提出日時 2020-04-17 10:14:45
言語 Elixir
(1.16.2)
結果
AC  
実行時間 559 ms / 1,000 ms
コード長 321 bytes
コンパイル時間 1,224 ms
コンパイル使用メモリ 63,024 KB
実行使用メモリ 54,196 KB
最終ジャッジ日時 2024-06-09 23:30:01
合計ジャッジ時間 7,257 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 531 ms
53,932 KB
testcase_01 AC 533 ms
53,808 KB
testcase_02 AC 534 ms
53,684 KB
testcase_03 AC 537 ms
54,196 KB
testcase_04 AC 535 ms
53,928 KB
testcase_05 AC 539 ms
53,932 KB
testcase_06 AC 530 ms
54,064 KB
testcase_07 AC 542 ms
54,196 KB
testcase_08 AC 537 ms
53,928 KB
testcase_09 AC 559 ms
53,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    IO.read(:line)
    |> String.trim()
    |> String.to_integer()
    |> solve
    |> IO.puts()
  end

  def solve(a) do
    m = (a * 60) |> div(100)

    [(m |> div(60)) + 10, m |> rem(60)]
    |> Enum.map(&(&1 |> to_string |> String.pad_leading(2, "0")))
    |> Enum.join(":")
  end
end
0