結果

問題 No.564 背の順
ユーザー gemmarogemmaro
提出日時 2020-04-19 12:31:50
言語 Elixir
(1.16.2)
結果
AC  
実行時間 542 ms / 2,000 ms
コード長 599 bytes
コンパイル時間 789 ms
コンパイル使用メモリ 62,764 KB
実行使用メモリ 54,536 KB
最終ジャッジ日時 2024-06-09 23:41:08
合計ジャッジ時間 8,172 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 531 ms
53,936 KB
testcase_01 AC 524 ms
53,880 KB
testcase_02 AC 528 ms
54,240 KB
testcase_03 AC 522 ms
53,936 KB
testcase_04 AC 527 ms
54,536 KB
testcase_05 AC 529 ms
53,796 KB
testcase_06 AC 523 ms
54,120 KB
testcase_07 AC 542 ms
53,932 KB
testcase_08 AC 528 ms
53,732 KB
testcase_09 AC 528 ms
53,936 KB
testcase_10 AC 525 ms
54,408 KB
testcase_11 AC 536 ms
53,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    [h, n] =
      IO.read(:line)
      |> String.trim()
      |> String.split()
      |> Enum.map(&String.to_integer/1)

    i =
      1..(n - 1)
      |> Enum.map(fn _ ->
        IO.read(:line)
        |> String.trim()
        |> String.to_integer()
      end)

    solve(h, i)
    |> IO.puts()
  end

  def solve(h, i) do
    r = (i |> Enum.count(&(&1 > h))) + 1

    [
      r,
      case r |> to_string |> String.last() |> String.to_integer() do
        1 -> "st"
        2 -> "nd"
        3 -> "rd"
        _ -> "th"
      end
    ]
    |> Enum.join()
  end
end
0