結果

問題 No.276 連続する整数の和(1)
ユーザー noriocnorioc
提出日時 2024-08-28 04:18:55
言語 Elixir
(1.16.2)
結果
AC  
実行時間 541 ms / 1,000 ms
コード長 340 bytes
コンパイル時間 1,324 ms
コンパイル使用メモリ 64,760 KB
実行使用メモリ 55,156 KB
最終ジャッジ日時 2024-08-28 04:19:07
合計ジャッジ時間 9,570 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 540 ms
55,156 KB
testcase_01 AC 511 ms
54,168 KB
testcase_02 AC 512 ms
54,444 KB
testcase_03 AC 538 ms
54,244 KB
testcase_04 AC 515 ms
54,068 KB
testcase_05 AC 535 ms
53,816 KB
testcase_06 AC 510 ms
55,120 KB
testcase_07 AC 509 ms
54,004 KB
testcase_08 AC 541 ms
54,336 KB
testcase_09 AC 507 ms
53,740 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 = ii()
    ans = gcd(n, div(n*(n-1), 2))
    IO.puts ans
  end
end
0