結果

問題 No.682 Average
ユーザー wotsushiwotsushi
提出日時 2018-07-25 22:38:27
言語 Elixir
(1.18.1)
結果
AC  
実行時間 544 ms / 2,000 ms
コード長 207 bytes
コンパイル時間 1,112 ms
コンパイル使用メモリ 63,256 KB
実行使用メモリ 54,940 KB
最終ジャッジ日時 2024-12-31 02:07:34
合計ジャッジ時間 9,086 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 543 ms
54,652 KB
testcase_01 AC 540 ms
54,940 KB
testcase_02 AC 539 ms
54,168 KB
testcase_03 AC 541 ms
53,856 KB
testcase_04 AC 539 ms
54,528 KB
testcase_05 AC 539 ms
54,512 KB
testcase_06 AC 533 ms
54,656 KB
testcase_07 AC 541 ms
53,860 KB
testcase_08 AC 534 ms
53,876 KB
testcase_09 AC 538 ms
54,852 KB
testcase_10 AC 534 ms
53,836 KB
testcase_11 AC 544 ms
54,520 KB
testcase_12 AC 539 ms
54,688 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