結果

問題 No.480 合計
ユーザー gemmarogemmaro
提出日時 2020-03-31 21:28:55
言語 Elixir
(1.16.2)
結果
AC  
実行時間 560 ms / 2,000 ms
コード長 201 bytes
コンパイル時間 1,061 ms
コンパイル使用メモリ 63,848 KB
実行使用メモリ 54,308 KB
最終ジャッジ日時 2024-06-09 23:07:05
合計ジャッジ時間 13,796 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 533 ms
54,272 KB
testcase_01 AC 527 ms
53,876 KB
testcase_02 AC 528 ms
54,072 KB
testcase_03 AC 544 ms
54,280 KB
testcase_04 AC 532 ms
53,804 KB
testcase_05 AC 540 ms
53,672 KB
testcase_06 AC 530 ms
54,184 KB
testcase_07 AC 531 ms
54,216 KB
testcase_08 AC 533 ms
53,800 KB
testcase_09 AC 532 ms
53,808 KB
testcase_10 AC 529 ms
54,188 KB
testcase_11 AC 527 ms
54,180 KB
testcase_12 AC 530 ms
54,188 KB
testcase_13 AC 523 ms
54,032 KB
testcase_14 AC 525 ms
54,308 KB
testcase_15 AC 528 ms
54,196 KB
testcase_16 AC 534 ms
53,940 KB
testcase_17 AC 538 ms
54,012 KB
testcase_18 AC 528 ms
54,208 KB
testcase_19 AC 560 ms
54,248 KB
testcase_20 AC 557 ms
53,924 KB
testcase_21 AC 531 ms
54,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    IO.gets("")
    |> String.trim()
    |> String.to_integer()
    |> (fn n ->
          (n * (n + 1) / 2)
          |> trunc
        end).()
    |> IO.puts()
  end
end
0