結果

問題 No.739 大事なことなので2度言います
ユーザー fukafukatanifukafukatani
提出日時 2021-06-23 23:15:06
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,062 ms / 2,000 ms
コード長 256 bytes
コンパイル時間 8,338 ms
コンパイル使用メモリ 264,544 KB
実行使用メモリ 63,768 KB
最終ジャッジ日時 2024-06-24 23:41:54
合計ジャッジ時間 20,850 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 934 ms
63,492 KB
testcase_01 AC 939 ms
63,624 KB
testcase_02 AC 926 ms
63,412 KB
testcase_03 AC 932 ms
63,692 KB
testcase_04 AC 919 ms
63,112 KB
testcase_05 AC 1,062 ms
63,456 KB
testcase_06 AC 948 ms
63,768 KB
testcase_07 AC 920 ms
63,296 KB
testcase_08 AC 933 ms
63,184 KB
testcase_09 AC 944 ms
63,624 KB
testcase_10 AC 941 ms
63,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

object Main extends App {
  val sc = new Scanner(System.in)
  val s = sc.next
  val hn = s.length / 2
  if (s.length % 2 == 0 && (0 until hn).forall(i => s(i) == s(i + hn))) {
    println("YES")
  } else {
    println("NO")
  }
}
0