結果

問題 No.83 最大マッチング
ユーザー yukiccoyukicco
提出日時 2018-11-23 23:35:06
言語 Elixir
(1.16.2)
結果
WA  
実行時間 -
コード長 377 bytes
コンパイル時間 852 ms
コンパイル使用メモリ 63,056 KB
実行使用メモリ 55,744 KB
最終ジャッジ日時 2024-06-09 22:23:07
合計ジャッジ時間 9,364 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 541 ms
53,860 KB
testcase_01 AC 554 ms
54,700 KB
testcase_02 AC 578 ms
54,208 KB
testcase_03 WA -
testcase_04 AC 542 ms
54,304 KB
testcase_05 WA -
testcase_06 AC 551 ms
54,588 KB
testcase_07 WA -
testcase_08 AC 558 ms
54,632 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 666 ms
53,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
    def main do

        input = IO.binread(:all) |> String.trim_trailing("\n")

        n = String.to_integer(input)

        x =
            if rem(n, 2) == 0 do
                String.duplicate("1", div(n, 2))
            else
                String.duplicate("1", div(n, 2) - 1) <> "7"
            end |> String.to_integer

        IO.puts x

    end
end
0