結果

問題 No.83 最大マッチング
ユーザー 3qvwn3qvwn
提出日時 2019-07-04 22:42:53
言語 Elixir
(1.16.2)
結果
AC  
実行時間 534 ms / 5,000 ms
コード長 279 bytes
コンパイル時間 920 ms
コンパイル使用メモリ 62,708 KB
実行使用メモリ 56,096 KB
最終ジャッジ日時 2024-12-31 03:19:52
合計ジャッジ時間 9,094 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 527 ms
53,996 KB
testcase_01 AC 529 ms
54,116 KB
testcase_02 AC 528 ms
54,352 KB
testcase_03 AC 523 ms
56,096 KB
testcase_04 AC 523 ms
54,128 KB
testcase_05 AC 528 ms
54,104 KB
testcase_06 AC 529 ms
54,040 KB
testcase_07 AC 527 ms
54,636 KB
testcase_08 AC 531 ms
53,608 KB
testcase_09 AC 532 ms
53,736 KB
testcase_10 AC 534 ms
54,588 KB
testcase_11 AC 534 ms
54,000 KB
testcase_12 AC 534 ms
54,560 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