結果

問題 No.756 チャンパーノウン定数 (1)
ユーザー gemmarogemmaro
提出日時 2020-04-13 13:16:56
言語 Elixir
(1.18.1)
結果
AC  
実行時間 549 ms / 2,000 ms
コード長 259 bytes
コンパイル時間 908 ms
コンパイル使用メモリ 62,772 KB
実行使用メモリ 55,616 KB
最終ジャッジ日時 2024-12-31 04:01:28
合計ジャッジ時間 14,996 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 532 ms
55,080 KB
testcase_01 AC 528 ms
54,676 KB
testcase_02 AC 545 ms
54,284 KB
testcase_03 AC 532 ms
54,424 KB
testcase_04 AC 533 ms
54,700 KB
testcase_05 AC 531 ms
55,320 KB
testcase_06 AC 546 ms
55,616 KB
testcase_07 AC 538 ms
54,280 KB
testcase_08 AC 544 ms
54,632 KB
testcase_09 AC 540 ms
54,296 KB
testcase_10 AC 528 ms
54,276 KB
testcase_11 AC 549 ms
54,296 KB
testcase_12 AC 529 ms
55,240 KB
testcase_13 AC 526 ms
55,144 KB
testcase_14 AC 531 ms
54,544 KB
testcase_15 AC 532 ms
54,812 KB
testcase_16 AC 530 ms
55,300 KB
testcase_17 AC 533 ms
53,900 KB
testcase_18 AC 535 ms
54,284 KB
testcase_19 AC 526 ms
54,124 KB
testcase_20 AC 531 ms
54,036 KB
testcase_21 AC 541 ms
54,520 KB
testcase_22 AC 543 ms
55,476 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