結果

問題 No.756 チャンパーノウン定数 (1)
ユーザー gemmarogemmaro
提出日時 2020-04-13 13:16:56
言語 Elixir
(1.16.2)
結果
AC  
実行時間 589 ms / 2,000 ms
コード長 259 bytes
コンパイル時間 1,118 ms
コンパイル使用メモリ 62,500 KB
実行使用メモリ 54,528 KB
最終ジャッジ日時 2024-06-09 23:19:32
合計ジャッジ時間 15,447 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 559 ms
54,064 KB
testcase_01 AC 581 ms
54,060 KB
testcase_02 AC 565 ms
53,992 KB
testcase_03 AC 556 ms
54,060 KB
testcase_04 AC 563 ms
53,808 KB
testcase_05 AC 556 ms
53,816 KB
testcase_06 AC 552 ms
54,000 KB
testcase_07 AC 560 ms
54,136 KB
testcase_08 AC 564 ms
53,668 KB
testcase_09 AC 555 ms
54,008 KB
testcase_10 AC 586 ms
53,932 KB
testcase_11 AC 584 ms
54,104 KB
testcase_12 AC 555 ms
53,916 KB
testcase_13 AC 589 ms
53,744 KB
testcase_14 AC 577 ms
53,924 KB
testcase_15 AC 579 ms
54,160 KB
testcase_16 AC 566 ms
53,816 KB
testcase_17 AC 561 ms
53,684 KB
testcase_18 AC 567 ms
54,528 KB
testcase_19 AC 577 ms
54,056 KB
testcase_20 AC 553 ms
53,932 KB
testcase_21 AC 563 ms
53,808 KB
testcase_22 AC 570 ms
53,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    IO.read(:line)
    |> String.trim()
    |> String.to_integer()
    |> solve
    |> IO.puts()
  end

  def solve(i) do
    1..i
    |> Enum.join()
    |> String.to_charlist
    |> Enum.at(i - 1)
    |> (&([&1])).()
  end
end
0