結果

問題 No.739 大事なことなので2度言います
ユーザー ayaaya
提出日時 2019-08-05 13:23:31
言語 PHP
(8.3.4)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 206 bytes
コンパイル時間 127 ms
コンパイル使用メモリ 32,400 KB
実行使用メモリ 31,472 KB
最終ジャッジ日時 2024-07-18 13:31:42
合計ジャッジ時間 1,034 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
30,880 KB
testcase_01 AC 42 ms
31,356 KB
testcase_02 AC 41 ms
30,876 KB
testcase_03 AC 40 ms
31,472 KB
testcase_04 AC 37 ms
31,180 KB
testcase_05 AC 37 ms
31,328 KB
testcase_06 AC 39 ms
31,368 KB
testcase_07 AC 37 ms
31,208 KB
testcase_08 AC 37 ms
31,436 KB
testcase_09 AC 37 ms
31,284 KB
testcase_10 AC 39 ms
31,284 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$input=trim(fgets(STDIN));
$ans="NO";
if(strlen($input)%2==0){
  if(substr($input,0,strlen($input)/2)
      ==substr($input,(strlen($input)/2),strlen($input)/2)){
        $ans="YES";
  }
}
echo $ans;
0