結果

問題 No.1550 nullくんの町清掃 / null's Town Cleaning
ユーザー DieGoDieGo
提出日時 2021-07-22 10:16:47
言語 Elixir
(1.16.2)
結果
AC  
実行時間 532 ms / 2,000 ms
コード長 134 bytes
コンパイル時間 5,488 ms
コンパイル使用メモリ 59,760 KB
実行使用メモリ 55,488 KB
最終ジャッジ日時 2024-07-17 14:36:05
合計ジャッジ時間 10,467 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 524 ms
55,416 KB
testcase_01 AC 531 ms
53,920 KB
testcase_02 AC 528 ms
54,916 KB
testcase_03 AC 525 ms
53,840 KB
testcase_04 AC 522 ms
55,488 KB
testcase_05 AC 530 ms
54,720 KB
testcase_06 AC 531 ms
53,616 KB
testcase_07 AC 529 ms
54,408 KB
testcase_08 AC 532 ms
54,040 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