結果
問題 | No.18 うーさー暗号 |
ユーザー | 3qvwn |
提出日時 | 2019-07-04 01:03:34 |
言語 | Elixir (1.16.2) |
結果 |
WA
|
実行時間 | - |
コード長 | 188 bytes |
コンパイル時間 | 1,225 ms |
コンパイル使用メモリ | 62,960 KB |
実行使用メモリ | 56,864 KB |
最終ジャッジ日時 | 2024-06-09 22:51:14 |
合計ジャッジ時間 | 9,229 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 540 ms
55,328 KB |
testcase_01 | AC | 533 ms
53,996 KB |
testcase_02 | AC | 558 ms
54,232 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 543 ms
54,456 KB |
testcase_11 | AC | 532 ms
54,100 KB |
testcase_12 | WA | - |
ソースコード
defmodule Main do def main do IO.gets("") |> String.trim |> to_charlist |> Enum.with_index(1) |> Enum.map(fn {key, value} -> rem(key - value + 65, 26) + 65 end) |> IO.puts end end