結果

問題 No.83 最大マッチング
ユーザー 3qvwn3qvwn
提出日時 2019-07-04 22:42:53
言語 Elixir
(1.16.2)
結果
AC  
実行時間 675 ms / 5,000 ms
コード長 279 bytes
コンパイル時間 1,119 ms
コンパイル使用メモリ 62,892 KB
実行使用メモリ 54,668 KB
最終ジャッジ日時 2024-06-09 22:52:41
合計ジャッジ時間 11,095 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 646 ms
54,668 KB
testcase_01 AC 647 ms
54,044 KB
testcase_02 AC 657 ms
53,616 KB
testcase_03 AC 659 ms
53,956 KB
testcase_04 AC 674 ms
53,572 KB
testcase_05 AC 661 ms
53,936 KB
testcase_06 AC 670 ms
53,824 KB
testcase_07 AC 661 ms
54,052 KB
testcase_08 AC 669 ms
54,544 KB
testcase_09 AC 662 ms
54,196 KB
testcase_10 AC 668 ms
54,156 KB
testcase_11 AC 671 ms
54,184 KB
testcase_12 AC 675 ms
53,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do 
  def main do
    IO.gets("") |> String.trim |> String.to_integer |> matching |> IO.puts
  end
  
  def matching(n) when rem(n, 2) == 0 do
    String.duplicate("1", div(n,2))
  end
  
  def matching(n) do
    "7" <> String.duplicate("1", div(n-3, 2))
  end
end
0