結果

問題 No.18 うーさー暗号
ユーザー 3qvwn3qvwn
提出日時 2019-07-04 09:19:26
言語 Elixir
(1.18.1)
結果
AC  
実行時間 531 ms / 5,000 ms
コード長 200 bytes
コンパイル時間 995 ms
コンパイル使用メモリ 62,976 KB
実行使用メモリ 55,272 KB
最終ジャッジ日時 2024-12-31 03:18:47
合計ジャッジ時間 8,873 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 523 ms
54,552 KB
testcase_01 AC 523 ms
54,560 KB
testcase_02 AC 524 ms
54,548 KB
testcase_03 AC 523 ms
54,136 KB
testcase_04 AC 519 ms
55,272 KB
testcase_05 AC 525 ms
54,552 KB
testcase_06 AC 519 ms
54,628 KB
testcase_07 AC 521 ms
54,380 KB
testcase_08 AC 525 ms
54,372 KB
testcase_09 AC 531 ms
54,888 KB
testcase_10 AC 524 ms
54,760 KB
testcase_11 AC 528 ms
54,548 KB
testcase_12 AC 519 ms
54,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do 
  def main do
    IO.gets("") |> String.trim |> to_charlist |> Enum.with_index(1) |> Enum.map(fn {key, value} -> rem(key + 26- rem(value,26) - 65, 26) + 65 end) |> IO.puts
  end
end
0