結果

問題 No.18 うーさー暗号
ユーザー 3qvwn3qvwn
提出日時 2019-07-04 09:19:26
言語 Elixir
(1.16.2)
結果
AC  
実行時間 572 ms / 5,000 ms
コード長 200 bytes
コンパイル時間 1,046 ms
コンパイル使用メモリ 63,020 KB
実行使用メモリ 54,548 KB
最終ジャッジ日時 2024-06-09 22:52:08
合計ジャッジ時間 9,092 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 538 ms
54,324 KB
testcase_01 AC 545 ms
53,808 KB
testcase_02 AC 538 ms
53,708 KB
testcase_03 AC 572 ms
53,932 KB
testcase_04 AC 537 ms
54,068 KB
testcase_05 AC 523 ms
53,816 KB
testcase_06 AC 534 ms
54,140 KB
testcase_07 AC 534 ms
53,932 KB
testcase_08 AC 529 ms
53,676 KB
testcase_09 AC 532 ms
53,732 KB
testcase_10 AC 551 ms
54,548 KB
testcase_11 AC 533 ms
54,204 KB
testcase_12 AC 549 ms
54,140 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