結果

問題 No.700 LOVE
ユーザー ayaaya
提出日時 2019-08-05 11:42:00
言語 PHP
(8.3.4)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 208 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 31,420 KB
実行使用メモリ 31,860 KB
最終ジャッジ日時 2024-07-22 23:38:50
合計ジャッジ時間 1,857 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
31,244 KB
testcase_01 AC 42 ms
31,312 KB
testcase_02 AC 43 ms
31,384 KB
testcase_03 AC 44 ms
31,552 KB
testcase_04 AC 43 ms
31,684 KB
testcase_05 AC 43 ms
31,648 KB
testcase_06 AC 43 ms
31,724 KB
testcase_07 AC 43 ms
31,576 KB
testcase_08 AC 42 ms
31,412 KB
testcase_09 AC 43 ms
31,540 KB
testcase_10 AC 43 ms
31,496 KB
testcase_11 AC 42 ms
31,424 KB
testcase_12 AC 42 ms
31,688 KB
testcase_13 AC 42 ms
31,532 KB
testcase_14 AC 43 ms
31,716 KB
testcase_15 AC 43 ms
31,828 KB
testcase_16 AC 43 ms
31,804 KB
testcase_17 AC 43 ms
31,860 KB
testcase_18 AC 42 ms
31,844 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$inputNum=explode(" ", (trim(fgets(STDIN))));
$ans="NO";
for($i=1;$i<=(int)$inputNum[0];$i++){
  $input=trim(fgets(STDIN));
  if(preg_match("/LOVE/",$input)){
    $ans="YES";
    break;
  }
}
echo $ans;
0