結果

問題 No.700 LOVE
ユーザー dyechidyechi
提出日時 2019-03-28 16:48:33
言語 PHP
(8.3.4)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 388 bytes
コンパイル時間 3,059 ms
コンパイル使用メモリ 30,736 KB
実行使用メモリ 31,524 KB
最終ジャッジ日時 2024-07-22 23:36:40
合計ジャッジ時間 4,638 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
31,336 KB
testcase_01 AC 43 ms
31,336 KB
testcase_02 AC 43 ms
31,452 KB
testcase_03 AC 42 ms
31,084 KB
testcase_04 AC 43 ms
31,344 KB
testcase_05 AC 42 ms
31,472 KB
testcase_06 AC 42 ms
31,524 KB
testcase_07 AC 43 ms
31,208 KB
testcase_08 AC 42 ms
31,496 KB
testcase_09 AC 43 ms
31,356 KB
testcase_10 AC 42 ms
31,508 KB
testcase_11 AC 42 ms
30,968 KB
testcase_12 AC 43 ms
31,340 KB
testcase_13 AC 42 ms
31,184 KB
testcase_14 AC 42 ms
31,488 KB
testcase_15 AC 42 ms
31,356 KB
testcase_16 AC 44 ms
31,204 KB
testcase_17 AC 43 ms
31,232 KB
testcase_18 AC 43 ms
31,512 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
while ($line = fgets(STDIN)) {
	$s[] = trim($line);
}
foreach ($s as $key => $value) {
	$array[] = explode(" ", $value);
}
$lines = array_splice($array, 0, 1);

$counter = 0;
for ($i=0; $i<$lines[0][0]; $i++) {
    if (strpos($array[$i][0], "LOVE") !== false) {
        echo "YES".PHP_EOL;
        $counter++;
        break;
    }
}

if ($counter == 0) {
    echo "NO".PHP_EOL;
}
?>
0