結果
問題 | No.374 コイン |
ユーザー | yaoshimax |
提出日時 | 2017-05-17 21:46:12 |
言語 | Elixir (1.16.2) |
結果 |
CE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 191 bytes |
コンパイル時間 | 1,227 ms |
コンパイル使用メモリ | 62,728 KB |
最終ジャッジ日時 | 2024-11-14 20:00:57 |
合計ジャッジ時間 | 1,576 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
コンパイルメッセージ
== Compilation error in file Main.exs == ** (ArgumentError) errors were found at the given arguments: * 1st argument: not a binary (stdlib 5.2) :binary.split(:eof, [" ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", <<194, 133>>, " ", "\t", "\n", "\v", "\f", "\r"], [:global, :trim_all]) (elixir 1.16.2) lib/elixir/unicode/unicode.ex:470: String.Break.split/1 Main.exs:1: (file)
ソースコード
case IO.gets("")|> String.split |> Enum.map(&Integer.parse/1) |> Enum.map(&elem(&1,0)) do [a, b] -> if b > a do IO.puts "K" else IO.puts "S" end end