結果

問題 No.908 うしたぷにきあくん文字列
ユーザー gemmarogemmaro
提出日時 2020-04-17 16:57:08
言語 Elixir
(1.16.2)
結果
AC  
実行時間 571 ms / 2,000 ms
コード長 406 bytes
コンパイル時間 1,302 ms
コンパイル使用メモリ 63,108 KB
実行使用メモリ 56,416 KB
最終ジャッジ日時 2024-06-09 23:30:55
合計ジャッジ時間 13,319 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 567 ms
54,148 KB
testcase_01 AC 563 ms
53,800 KB
testcase_02 AC 561 ms
54,920 KB
testcase_03 AC 536 ms
53,812 KB
testcase_04 AC 559 ms
54,600 KB
testcase_05 AC 553 ms
54,212 KB
testcase_06 AC 564 ms
54,308 KB
testcase_07 AC 558 ms
54,000 KB
testcase_08 AC 532 ms
54,628 KB
testcase_09 AC 557 ms
54,356 KB
testcase_10 AC 545 ms
54,800 KB
testcase_11 AC 549 ms
56,416 KB
testcase_12 AC 553 ms
54,480 KB
testcase_13 AC 561 ms
53,724 KB
testcase_14 AC 571 ms
54,300 KB
testcase_15 AC 565 ms
53,860 KB
testcase_16 AC 544 ms
54,100 KB
testcase_17 AC 554 ms
54,928 KB
testcase_18 AC 556 ms
53,984 KB
testcase_19 AC 544 ms
53,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    IO.read(:line)
    |> String.trim()
    |> solve
    |> IO.puts()
  end

  def solve(s) do
    t = s |> String.to_charlist()

    cond do
      0..((t |> length |> div(2)) - 1)
      |> Enum.all?(fn i ->
        t |> Enum.at(2 * i) != ' ' |> hd &&
            t |> Enum.at(2 * i + 1) == ' ' |> hd
      end) ->
        "Yes"

      true ->
        "No"
    end
  end
end
0