結果

問題 No.700 LOVE
ユーザー mondomondo
提出日時 2019-08-05 16:57:51
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 257 bytes
コンパイル時間 80 ms
コンパイル使用メモリ 32,532 KB
実行使用メモリ 32,916 KB
最終ジャッジ日時 2024-07-18 13:36:58
合計ジャッジ時間 1,764 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 42 ms
32,400 KB
testcase_02 AC 42 ms
32,784 KB
testcase_03 AC 41 ms
32,660 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 41 ms
32,788 KB
testcase_07 AC 41 ms
32,532 KB
testcase_08 WA -
testcase_09 AC 42 ms
32,724 KB
testcase_10 AC 41 ms
32,724 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 42 ms
32,656 KB
testcase_15 AC 41 ms
32,532 KB
testcase_16 AC 41 ms
32,600 KB
testcase_17 WA -
testcase_18 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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 ++;
    }
}
echo $ans;
0