結果

問題 No.3042 本棚
ユーザー noriocnorioc
提出日時 2024-07-23 23:35:15
言語 Elixir
(1.16.2)
結果
AC  
実行時間 680 ms / 2,000 ms
コード長 488 bytes
コンパイル時間 1,866 ms
コンパイル使用メモリ 61,480 KB
実行使用メモリ 55,980 KB
最終ジャッジ日時 2024-07-23 23:35:38
合計ジャッジ時間 21,616 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 672 ms
54,584 KB
testcase_01 AC 647 ms
54,208 KB
testcase_02 AC 679 ms
54,424 KB
testcase_03 AC 641 ms
53,736 KB
testcase_04 AC 672 ms
53,988 KB
testcase_05 AC 646 ms
54,536 KB
testcase_06 AC 666 ms
55,304 KB
testcase_07 AC 639 ms
54,124 KB
testcase_08 AC 665 ms
53,800 KB
testcase_09 AC 652 ms
55,536 KB
testcase_10 AC 666 ms
53,744 KB
testcase_11 AC 642 ms
53,988 KB
testcase_12 AC 668 ms
54,496 KB
testcase_13 AC 643 ms
53,984 KB
testcase_14 AC 680 ms
54,028 KB
testcase_15 AC 642 ms
55,980 KB
testcase_16 AC 666 ms
54,204 KB
testcase_17 AC 654 ms
54,940 KB
testcase_18 AC 669 ms
53,680 KB
testcase_19 AC 647 ms
53,620 KB
testcase_20 AC 655 ms
54,164 KB
testcase_21 AC 642 ms
54,264 KB
testcase_22 AC 625 ms
55,228 KB
testcase_23 AC 676 ms
54,068 KB
testcase_24 AC 618 ms
53,992 KB
testcase_25 AC 641 ms
54,120 KB
testcase_26 AC 613 ms
54,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    n = ii()
    xs = for _ <- 1..n, into: [] do
      [a, b] = input() |> String.split
      {a, b}
    end

    for {a, b} <- Enum.sort(xs, &cmp/2) do
      IO.puts "#{a} #{b}"
    end
  end

  def cmp({a, b}, {c, d}) do
    if a == c do
      b <= d
    else
      a <= c
    end
  end

  def input, do: IO.read(:line) |> String.trim
  def ii, do: input() |> String.to_integer
  def li, do: input() |> String.split |> Enum.map(&String.to_integer/1)
end
0