結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
31,648 KB
testcase_01 AC 44 ms
31,904 KB
testcase_02 AC 43 ms
31,288 KB
testcase_03 AC 42 ms
31,688 KB
testcase_04 AC 42 ms
31,672 KB
testcase_05 AC 43 ms
31,416 KB
testcase_06 AC 42 ms
31,552 KB
testcase_07 AC 42 ms
31,804 KB
testcase_08 AC 42 ms
31,608 KB
testcase_09 AC 42 ms
31,716 KB
testcase_10 AC 42 ms
31,616 KB
testcase_11 AC 42 ms
31,580 KB
testcase_12 AC 42 ms
31,504 KB
testcase_13 AC 41 ms
31,424 KB
testcase_14 AC 42 ms
31,580 KB
testcase_15 AC 42 ms
31,716 KB
testcase_16 AC 42 ms
31,676 KB
testcase_17 AC 42 ms
31,564 KB
testcase_18 AC 41 ms
31,548 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$count = explode(" ",trim(fgets(STDIN)));
$array = array();
for ($i = 0; $i < $count[0]; $i++) {
    $array[] = trim(fgets(STDIN));
}
$ans = "NO";
foreach ($array as $value){
    if (preg_match("/LOVE/", $value) >= 1) {
    $ans = "YES";
    break;
    }
}
echo $ans;
0