結果

問題 No.558 575検出するやつ
ユーザー tazakkytazakky
提出日時 2017-09-11 19:48:33
言語 PHP
(8.3.4)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 241 bytes
コンパイル時間 2,369 ms
コンパイル使用メモリ 30,076 KB
実行使用メモリ 30,968 KB
最終ジャッジ日時 2024-04-25 06:51:35
合計ジャッジ時間 3,260 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
30,848 KB
testcase_01 AC 41 ms
30,660 KB
testcase_02 AC 41 ms
30,760 KB
testcase_03 AC 41 ms
30,968 KB
testcase_04 AC 43 ms
30,692 KB
testcase_05 AC 42 ms
30,508 KB
testcase_06 AC 41 ms
30,784 KB
testcase_07 AC 41 ms
30,768 KB
testcase_08 AC 40 ms
30,680 KB
testcase_09 AC 41 ms
30,880 KB
testcase_10 AC 41 ms
30,588 KB
testcase_11 AC 41 ms
30,780 KB
testcase_12 AC 41 ms
30,684 KB
testcase_13 AC 41 ms
30,796 KB
testcase_14 AC 41 ms
30,724 KB
testcase_15 AC 41 ms
30,956 KB
testcase_16 AC 42 ms
30,764 KB
testcase_17 AC 41 ms
30,712 KB
testcase_18 AC 42 ms
30,728 KB
testcase_19 AC 42 ms
30,864 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
    // 1≤|S|≤1001≤|S|≤100 SS は英数字'a'-'z','A'-'Z','0'-'9'のみで構成される
    $input = trim(fgets(STDIN));
    
    if(strstr($input, "575") != false){
        echo "YES";
    }else{
        echo "NO";
    }

?>
0