結果

問題 No.809 かけ算
ユーザー nao22bnao22b
提出日時 2019-04-12 21:21:48
言語 Elixir
(1.16.2)
結果
AC  
実行時間 545 ms / 2,000 ms
コード長 245 bytes
コンパイル時間 1,034 ms
コンパイル使用メモリ 63,048 KB
実行使用メモリ 54,056 KB
最終ジャッジ日時 2024-06-09 22:26:50
合計ジャッジ時間 5,724 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 538 ms
53,916 KB
testcase_01 AC 545 ms
54,056 KB
testcase_02 AC 532 ms
53,476 KB
testcase_03 AC 531 ms
53,420 KB
testcase_04 AC 523 ms
53,544 KB
testcase_05 AC 525 ms
53,932 KB
testcase_06 AC 521 ms
53,944 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
        b = IO.gets("") |> String.trim |> String.to_integer
        IO.puts "1 #{b}"
    end
end
0