結果

問題 No.1550 nullくんの町清掃 / null's Town Cleaning
ユーザー DieGoDieGo
提出日時 2021-07-22 10:16:47
言語 Elixir
(1.16.2)
結果
AC  
実行時間 641 ms / 2,000 ms
コード長 134 bytes
コンパイル時間 3,411 ms
コンパイル使用メモリ 53,260 KB
実行使用メモリ 51,224 KB
最終ジャッジ日時 2023-09-24 13:48:52
合計ジャッジ時間 10,321 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 613 ms
49,792 KB
testcase_01 AC 625 ms
51,224 KB
testcase_02 AC 620 ms
49,248 KB
testcase_03 AC 620 ms
49,144 KB
testcase_04 AC 622 ms
49,732 KB
testcase_05 AC 624 ms
49,416 KB
testcase_06 AC 623 ms
49,052 KB
testcase_07 AC 621 ms
49,304 KB
testcase_08 AC 641 ms
49,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    n = IO.read(:line) |> String.trim() |> String.to_integer;
    IO.puts rem(n, 1000000007)
  end
end
0