結果

問題 No.903 太郎の確率
ユーザー gemmarogemmaro
提出日時 2020-04-07 15:56:34
言語 Elixir
(1.16.2)
結果
AC  
実行時間 636 ms / 2,000 ms
コード長 144 bytes
コンパイル時間 1,677 ms
コンパイル使用メモリ 53,080 KB
実行使用メモリ 50,064 KB
最終ジャッジ日時 2023-08-29 23:58:17
合計ジャッジ時間 7,896 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 617 ms
49,740 KB
testcase_01 AC 633 ms
49,884 KB
testcase_02 AC 624 ms
49,232 KB
testcase_03 AC 628 ms
49,288 KB
testcase_04 AC 618 ms
49,312 KB
testcase_05 AC 621 ms
49,112 KB
testcase_06 AC 622 ms
50,064 KB
testcase_07 AC 636 ms
49,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    IO.gets("")
    |> String.trim()
    |> String.to_integer()
    |> (&(1 / &1)).()
    |> IO.puts()
  end
end
0