結果

問題 No.739 大事なことなので2度言います
ユーザー noriocnorioc
提出日時 2024-11-07 06:30:20
言語 Elixir
(1.16.2)
結果
AC  
実行時間 563 ms / 2,000 ms
コード長 520 bytes
コンパイル時間 1,611 ms
コンパイル使用メモリ 61,448 KB
実行使用メモリ 54,232 KB
最終ジャッジ日時 2024-11-07 06:30:30
合計ジャッジ時間 8,697 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 524 ms
53,676 KB
testcase_01 AC 558 ms
53,948 KB
testcase_02 AC 529 ms
53,848 KB
testcase_03 AC 563 ms
54,100 KB
testcase_04 AC 525 ms
53,928 KB
testcase_05 AC 557 ms
53,980 KB
testcase_06 AC 530 ms
54,028 KB
testcase_07 AC 531 ms
54,100 KB
testcase_08 AC 560 ms
54,232 KB
testcase_09 AC 538 ms
54,228 KB
testcase_10 AC 555 ms
53,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  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)
  def yn(b), do: IO.puts(if b, do: "Yes", else: "No")

  def main do
    s = input()
    n = String.length(s)

    if rem(n, 2) == 1 do
      false
    else
      m = div(n, 2)
      a = String.slice(s, 0, m)
      b = String.slice(s, m, n)
      a == b
    end
    |> then(fn b -> if b, do: "YES", else: "NO" end)
    |> IO.puts
  end
end
0