結果

問題 No.739 大事なことなので2度言います
ユーザー mondomondo
提出日時 2019-08-06 11:28:35
言語 PHP
(8.3.4)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 163 bytes
コンパイル時間 77 ms
コンパイル使用メモリ 30,772 KB
実行使用メモリ 31,488 KB
最終ジャッジ日時 2024-07-18 13:52:15
合計ジャッジ時間 914 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
31,324 KB
testcase_01 AC 33 ms
30,812 KB
testcase_02 WA -
testcase_03 AC 34 ms
31,148 KB
testcase_04 WA -
testcase_05 AC 37 ms
30,980 KB
testcase_06 AC 33 ms
31,468 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 33 ms
31,176 KB
testcase_10 AC 33 ms
31,144 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$moji = trim(fgets(STDIN));
$lang = strlen($moji) / 2;
$half1 = substr($moji, $lang);
$half2 = substr($moji, 0, $lang);
echo $half1 == $half2 ? "YES" : "NO";
0