結果

問題 No.666 1000000007で割るだけ
ユーザー gemmarogemmaro
提出日時 2020-04-08 11:35:46
言語 Elixir
(1.16.2)
結果
AC  
実行時間 626 ms / 2,000 ms
コード長 219 bytes
コンパイル時間 1,111 ms
コンパイル使用メモリ 63,124 KB
実行使用メモリ 54,524 KB
最終ジャッジ日時 2024-06-09 23:11:49
合計ジャッジ時間 15,615 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 534 ms
53,944 KB
testcase_01 AC 626 ms
54,064 KB
testcase_02 AC 533 ms
54,264 KB
testcase_03 AC 540 ms
53,680 KB
testcase_04 AC 525 ms
54,524 KB
testcase_05 AC 545 ms
54,020 KB
testcase_06 AC 547 ms
54,020 KB
testcase_07 AC 545 ms
54,232 KB
testcase_08 AC 530 ms
53,940 KB
testcase_09 AC 546 ms
54,312 KB
testcase_10 AC 548 ms
54,132 KB
testcase_11 AC 565 ms
53,808 KB
testcase_12 AC 545 ms
53,868 KB
testcase_13 AC 534 ms
54,204 KB
testcase_14 AC 560 ms
53,800 KB
testcase_15 AC 555 ms
53,876 KB
testcase_16 AC 531 ms
53,744 KB
testcase_17 AC 533 ms
53,816 KB
testcase_18 AC 537 ms
53,796 KB
testcase_19 AC 534 ms
53,672 KB
testcase_20 AC 544 ms
53,928 KB
testcase_21 AC 541 ms
53,932 KB
testcase_22 AC 562 ms
54,280 KB
testcase_23 AC 552 ms
53,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    [a, b] =
      IO.gets("")
      |> String.trim()
      |> String.split()
      |> Enum.map(fn s -> String.to_integer(s) end)

    rem(a * b, 1_000_000_007)
    |> IO.puts()
  end
end
0