結果

問題 No.296 n度寝
ユーザー yukiccoyukicco
提出日時 2018-11-17 22:57:47
言語 Elixir
(1.16.2)
結果
AC  
実行時間 597 ms / 1,000 ms
コード長 484 bytes
コンパイル時間 1,133 ms
コンパイル使用メモリ 63,668 KB
実行使用メモリ 55,076 KB
最終ジャッジ日時 2024-06-09 22:20:23
合計ジャッジ時間 12,070 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 575 ms
55,076 KB
testcase_01 AC 582 ms
53,992 KB
testcase_02 AC 571 ms
54,000 KB
testcase_03 AC 584 ms
54,716 KB
testcase_04 AC 565 ms
54,468 KB
testcase_05 AC 566 ms
54,588 KB
testcase_06 AC 562 ms
53,728 KB
testcase_07 AC 577 ms
54,136 KB
testcase_08 AC 566 ms
53,992 KB
testcase_09 AC 559 ms
54,116 KB
testcase_10 AC 555 ms
54,872 KB
testcase_11 AC 552 ms
53,868 KB
testcase_12 AC 545 ms
54,648 KB
testcase_13 AC 551 ms
54,124 KB
testcase_14 AC 562 ms
54,908 KB
testcase_15 AC 597 ms
54,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
    def toMin(time) do
        {h, m} = time
        (60 * h) + m
    end
    def toTime(min) do
        d = div(min, 1440)
        h = div(min, 60) - (24 * d)
        m = rem(min, 60)
        {h, m}
    end
    def main do

        inputs = IO.binread(:all) |> String.split

        [n, h, m, t] = Enum.map(inputs, &(String.to_integer(&1)))

        {hour, minute} = toMin({h, m}) + (t * (n - 1)) |> toTime

        IO.puts hour
        IO.puts minute

    end
end
0