結果

問題 No.1217 せしすせそ
ユーザー penqenpenqen
提出日時 2020-12-15 16:49:07
言語 Elixir
(1.16.2)
結果
AC  
実行時間 544 ms / 2,000 ms
コード長 366 bytes
コンパイル時間 959 ms
コンパイル使用メモリ 62,768 KB
実行使用メモリ 54,288 KB
最終ジャッジ日時 2024-06-10 00:11:58
合計ジャッジ時間 8,829 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 528 ms
54,060 KB
testcase_01 AC 544 ms
54,188 KB
testcase_02 AC 524 ms
54,284 KB
testcase_03 AC 524 ms
54,140 KB
testcase_04 AC 518 ms
54,000 KB
testcase_05 AC 533 ms
54,072 KB
testcase_06 AC 533 ms
54,064 KB
testcase_07 AC 528 ms
54,064 KB
testcase_08 AC 525 ms
53,880 KB
testcase_09 AC 519 ms
53,724 KB
testcase_10 AC 527 ms
53,864 KB
testcase_11 AC 529 ms
54,288 KB
testcase_12 AC 533 ms
53,676 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