結果

問題 No.1217 せしすせそ
ユーザー penqenpenqen
提出日時 2020-12-15 16:49:07
言語 Elixir
(1.18.1)
結果
AC  
実行時間 615 ms / 2,000 ms
コード長 366 bytes
コンパイル時間 1,249 ms
コンパイル使用メモリ 63,544 KB
実行使用メモリ 54,764 KB
最終ジャッジ日時 2024-12-31 05:15:43
合計ジャッジ時間 9,638 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 549 ms
54,104 KB
testcase_01 AC 544 ms
54,100 KB
testcase_02 AC 550 ms
54,764 KB
testcase_03 AC 554 ms
54,188 KB
testcase_04 AC 561 ms
54,092 KB
testcase_05 AC 554 ms
54,120 KB
testcase_06 AC 550 ms
54,036 KB
testcase_07 AC 565 ms
53,872 KB
testcase_08 AC 555 ms
54,584 KB
testcase_09 AC 555 ms
54,120 KB
testcase_10 AC 615 ms
53,904 KB
testcase_11 AC 556 ms
54,592 KB
testcase_12 AC 607 ms
54,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    s = IO.read(:line) |> String.trim()

    solve(s) |> IO.puts
  end
  
  def solve(sd) do
    s = "abcdefghijklmnopqrstuvwxyz" |> String.codepoints()
    sd = sd |> String.codepoints()

    s
    |> Enum.with_index()
    |> Enum.find_value(fn {w, i} ->
      if w != Enum.at(sd, i), do: "#{w}to#{Enum.at(sd, i)}"
    end)
  end
end
0