結果

問題 No.480 合計
ユーザー nao22bnao22b
提出日時 2019-04-12 21:07:02
言語 Elixir
(1.16.2)
結果
AC  
実行時間 584 ms / 2,000 ms
コード長 270 bytes
コンパイル時間 946 ms
コンパイル使用メモリ 62,804 KB
実行使用メモリ 56,104 KB
最終ジャッジ日時 2024-06-09 22:28:03
合計ジャッジ時間 14,389 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 572 ms
53,868 KB
testcase_01 AC 554 ms
54,124 KB
testcase_02 AC 563 ms
55,020 KB
testcase_03 AC 572 ms
54,472 KB
testcase_04 AC 552 ms
54,124 KB
testcase_05 AC 551 ms
56,104 KB
testcase_06 AC 546 ms
54,204 KB
testcase_07 AC 539 ms
54,356 KB
testcase_08 AC 584 ms
53,848 KB
testcase_09 AC 556 ms
54,872 KB
testcase_10 AC 553 ms
54,560 KB
testcase_11 AC 556 ms
54,272 KB
testcase_12 AC 557 ms
54,368 KB
testcase_13 AC 548 ms
54,296 KB
testcase_14 AC 569 ms
54,224 KB
testcase_15 AC 552 ms
54,384 KB
testcase_16 AC 540 ms
54,304 KB
testcase_17 AC 538 ms
53,852 KB
testcase_18 AC 552 ms
54,488 KB
testcase_19 AC 544 ms
53,864 KB
testcase_20 AC 543 ms
55,016 KB
testcase_21 AC 540 ms
54,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
    def solve(n, n, t) do
        n + t
    end
    def solve(a, b, t) do
        solve(a + 1, b, a + t)
    end

    def main do
        n = IO.gets("") |> String.trim |> String.to_integer
        b = solve(1, n, 0)
        IO.puts "#{b}"
    end
end
0