結果

問題 No.773 コンテスト
ユーザー nao22bnao22b
提出日時 2019-04-22 22:49:03
言語 Elixir
(1.16.2)
結果
AC  
実行時間 560 ms / 2,000 ms
コード長 414 bytes
コンパイル時間 1,106 ms
コンパイル使用メモリ 62,512 KB
実行使用メモリ 54,192 KB
最終ジャッジ日時 2024-06-09 22:33:22
合計ジャッジ時間 15,181 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 526 ms
53,668 KB
testcase_01 AC 538 ms
53,976 KB
testcase_02 AC 533 ms
54,056 KB
testcase_03 AC 560 ms
54,060 KB
testcase_04 AC 550 ms
53,620 KB
testcase_05 AC 542 ms
53,968 KB
testcase_06 AC 547 ms
54,188 KB
testcase_07 AC 537 ms
54,192 KB
testcase_08 AC 541 ms
54,064 KB
testcase_09 AC 532 ms
54,004 KB
testcase_10 AC 541 ms
53,816 KB
testcase_11 AC 557 ms
54,060 KB
testcase_12 AC 539 ms
54,160 KB
testcase_13 AC 541 ms
54,068 KB
testcase_14 AC 539 ms
53,912 KB
testcase_15 AC 537 ms
53,844 KB
testcase_16 AC 534 ms
54,060 KB
testcase_17 AC 538 ms
53,756 KB
testcase_18 AC 535 ms
53,972 KB
testcase_19 AC 545 ms
54,080 KB
testcase_20 AC 532 ms
54,040 KB
testcase_21 AC 536 ms
54,064 KB
testcase_22 AC 541 ms
53,936 KB
testcase_23 AC 539 ms
53,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do

    def in_range(a, b, day) do
        case (b < day || a > day) do
            true -> 1
            _ -> 0
        end
    end

    def solve(a, b) do
        List.foldl([23, 24, 25], 0, fn(x, acc) -> acc + in_range(a, b, x) end)
    end

    def main do
        [a, b] = IO.gets("") |> String.trim |> String.split |> Enum.map(&String.to_integer/1)
        solve(a, b) |> IO.puts
    end
end

0