結果

問題 No.224 文字列変更(easy)
ユーザー gemmarogemmaro
提出日時 2020-04-17 17:16:23
言語 Elixir
(1.16.2)
結果
AC  
実行時間 678 ms / 5,000 ms
コード長 362 bytes
コンパイル時間 1,060 ms
コンパイル使用メモリ 64,328 KB
実行使用メモリ 55,556 KB
最終ジャッジ日時 2024-06-09 23:31:52
合計ジャッジ時間 16,917 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 627 ms
54,680 KB
testcase_01 AC 658 ms
54,368 KB
testcase_02 AC 631 ms
54,232 KB
testcase_03 AC 627 ms
54,520 KB
testcase_04 AC 625 ms
54,092 KB
testcase_05 AC 669 ms
54,560 KB
testcase_06 AC 637 ms
53,984 KB
testcase_07 AC 654 ms
54,380 KB
testcase_08 AC 639 ms
54,128 KB
testcase_09 AC 625 ms
54,676 KB
testcase_10 AC 634 ms
54,120 KB
testcase_11 AC 646 ms
54,444 KB
testcase_12 AC 646 ms
55,556 KB
testcase_13 AC 636 ms
54,124 KB
testcase_14 AC 643 ms
54,132 KB
testcase_15 AC 652 ms
54,672 KB
testcase_16 AC 671 ms
54,396 KB
testcase_17 AC 670 ms
54,692 KB
testcase_18 AC 674 ms
54,308 KB
testcase_19 AC 678 ms
54,000 KB
testcase_20 AC 663 ms
53,992 KB
testcase_21 AC 665 ms
54,456 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, s, t]) do
    0..((n |> String.to_integer()) - 1)
    |> Enum.count(fn i ->
      s |> String.to_charlist() |> Enum.at(i) !=
        t |> String.to_charlist() |> Enum.at(i)
    end)
  end
end
0