結果
問題 | No.9006 マルチバイト文字テスト(テスト用) |
ユーザー | norioc |
提出日時 | 2024-07-23 23:12:23 |
言語 | Elixir (1.16.2) |
結果 |
AC
|
実行時間 | 680 ms / 5,000 ms |
コード長 | 265 bytes |
コンパイル時間 | 2,772 ms |
コンパイル使用メモリ | 60,780 KB |
実行使用メモリ | 54,168 KB |
最終ジャッジ日時 | 2024-07-23 23:12:30 |
合計ジャッジ時間 | 4,938 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 628 ms
53,808 KB |
testcase_01 | AC | 680 ms
53,992 KB |
testcase_02 | AC | 633 ms
54,168 KB |
ソースコード
defmodule Main do def main do s = input() ans = String.reverse(s) IO.puts ans end def input, do: IO.read(:line) |> String.trim def ii, do: input() |> String.to_integer def li, do: input() |> String.split |> Enum.map(&String.to_integer/1) end