結果

問題 No.415 ぴょん
ユーザー noriocnorioc
提出日時 2024-11-30 06:47:08
言語 Elixir
(1.16.2)
結果
AC  
実行時間 659 ms / 1,000 ms
コード長 345 bytes
コンパイル時間 2,265 ms
コンパイル使用メモリ 61,484 KB
実行使用メモリ 55,528 KB
最終ジャッジ日時 2024-11-30 06:47:33
合計ジャッジ時間 21,798 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 638 ms
53,880 KB
testcase_01 AC 652 ms
54,672 KB
testcase_02 AC 642 ms
54,704 KB
testcase_03 AC 658 ms
54,188 KB
testcase_04 AC 652 ms
54,596 KB
testcase_05 AC 647 ms
54,684 KB
testcase_06 AC 632 ms
53,812 KB
testcase_07 AC 653 ms
54,104 KB
testcase_08 AC 638 ms
54,008 KB
testcase_09 AC 653 ms
55,008 KB
testcase_10 AC 642 ms
54,004 KB
testcase_11 AC 657 ms
54,000 KB
testcase_12 AC 643 ms
54,232 KB
testcase_13 AC 653 ms
53,872 KB
testcase_14 AC 647 ms
53,736 KB
testcase_15 AC 659 ms
54,316 KB
testcase_16 AC 632 ms
53,992 KB
testcase_17 AC 655 ms
54,824 KB
testcase_18 AC 657 ms
54,012 KB
testcase_19 AC 642 ms
54,328 KB
testcase_20 AC 655 ms
54,832 KB
testcase_21 AC 642 ms
53,996 KB
testcase_22 AC 654 ms
53,872 KB
testcase_23 AC 640 ms
53,604 KB
testcase_24 AC 654 ms
55,528 KB
testcase_25 AC 648 ms
55,096 KB
testcase_26 AC 656 ms
53,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def input, do: IO.read(:line) |> String.trim
  def ii, do: input() |> String.to_integer
  def li, do: input() |> String.split |> Enum.map(&String.to_integer/1)
  def yn(b), do: IO.puts (if b, do: "Yes", else: "No")

  import Integer

  def main do
    [n, d] = li()

    ans = div(n, gcd(n, d)) - 1
    IO.puts ans
  end
end
0