結果

問題 No.547 未知の言語
ユーザー gemmarogemmaro
提出日時 2020-04-18 18:46:15
言語 Elixir
(1.16.2)
結果
AC  
実行時間 553 ms / 2,000 ms
コード長 502 bytes
コンパイル時間 1,085 ms
コンパイル使用メモリ 63,432 KB
実行使用メモリ 54,676 KB
最終ジャッジ日時 2024-06-09 23:35:11
合計ジャッジ時間 20,045 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 541 ms
54,676 KB
testcase_01 AC 530 ms
54,132 KB
testcase_02 AC 530 ms
53,552 KB
testcase_03 AC 553 ms
53,944 KB
testcase_04 AC 534 ms
54,056 KB
testcase_05 AC 533 ms
53,676 KB
testcase_06 AC 543 ms
53,992 KB
testcase_07 AC 540 ms
53,936 KB
testcase_08 AC 551 ms
54,064 KB
testcase_09 AC 540 ms
53,816 KB
testcase_10 AC 538 ms
54,384 KB
testcase_11 AC 546 ms
54,188 KB
testcase_12 AC 537 ms
53,856 KB
testcase_13 AC 532 ms
53,928 KB
testcase_14 AC 535 ms
53,720 KB
testcase_15 AC 532 ms
54,004 KB
testcase_16 AC 532 ms
53,940 KB
testcase_17 AC 533 ms
54,276 KB
testcase_18 AC 535 ms
54,088 KB
testcase_19 AC 530 ms
54,188 KB
testcase_20 AC 535 ms
54,620 KB
testcase_21 AC 535 ms
53,612 KB
testcase_22 AC 526 ms
53,876 KB
testcase_23 AC 520 ms
53,752 KB
testcase_24 AC 538 ms
54,076 KB
testcase_25 AC 532 ms
54,064 KB
testcase_26 AC 540 ms
54,188 KB
testcase_27 AC 542 ms
54,360 KB
testcase_28 AC 541 ms
54,060 KB
testcase_29 AC 544 ms
54,004 KB
testcase_30 AC 533 ms
54,060 KB
testcase_31 AC 550 ms
54,292 KB
testcase_32 AC 536 ms
54,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    1..3
    |> Enum.map(fn _ -> IO.read(:line) |> String.trim() end)
    |> solve
    |> IO.puts()
  end

  def solve([n, x, y]) do
    s = x |> String.split()
    t = y |> String.split()

    0..((n |> String.to_integer()) - 1)
    |> Enum.reject(fn i -> s |> Enum.at(i) == t |> Enum.at(i) end)
    |> Enum.map(fn j ->
      """
      #{j + 1}
      #{s |> Enum.at(j)}
      #{t |> Enum.at(j)}
      """
      |> String.trim()
    end)
    |> Enum.join("\n")
  end
end
0