結果

問題 No.682 Average
ユーザー wotsushiwotsushi
提出日時 2018-07-25 22:38:27
言語 Elixir
(1.16.2)
結果
AC  
実行時間 562 ms / 2,000 ms
コード長 207 bytes
コンパイル時間 1,155 ms
コンパイル使用メモリ 63,268 KB
実行使用メモリ 55,156 KB
最終ジャッジ日時 2024-06-09 22:03:42
合計ジャッジ時間 9,230 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 562 ms
53,816 KB
testcase_01 AC 534 ms
53,908 KB
testcase_02 AC 539 ms
54,064 KB
testcase_03 AC 530 ms
54,240 KB
testcase_04 AC 528 ms
54,540 KB
testcase_05 AC 526 ms
53,676 KB
testcase_06 AC 541 ms
53,720 KB
testcase_07 AC 525 ms
54,084 KB
testcase_08 AC 523 ms
53,656 KB
testcase_09 AC 525 ms
53,808 KB
testcase_10 AC 528 ms
54,288 KB
testcase_11 AC 532 ms
53,672 KB
testcase_12 AC 531 ms
55,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

    ans = a..b |> Enum.count(&(rem(a + b + &1, 3) == 0))

    IO.puts ans
  end
end
0