結果

問題 No.739 大事なことなので2度言います
ユーザー gemmarogemmaro
提出日時 2020-04-17 09:54:25
言語 Elixir
(1.16.2)
結果
AC  
実行時間 617 ms / 2,000 ms
コード長 337 bytes
コンパイル時間 1,122 ms
コンパイル使用メモリ 62,320 KB
実行使用メモリ 56,024 KB
最終ジャッジ日時 2024-06-09 23:28:55
合計ジャッジ時間 8,673 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 572 ms
55,524 KB
testcase_01 AC 567 ms
54,636 KB
testcase_02 AC 573 ms
54,392 KB
testcase_03 AC 577 ms
54,968 KB
testcase_04 AC 589 ms
55,696 KB
testcase_05 AC 603 ms
54,640 KB
testcase_06 AC 585 ms
56,024 KB
testcase_07 AC 583 ms
54,796 KB
testcase_08 AC 617 ms
55,624 KB
testcase_09 AC 576 ms
54,972 KB
testcase_10 AC 563 ms
55,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

  defp solve(s) do
    u = s |> String.to_charlist()
    t = u |> length |> div(2)

    cond do
      u |> Enum.slice(0..(t - 1)) ==
          u |> Enum.slice(t..-1) ->
        "YES"

      true ->
        "NO"
    end
  end
end
0