結果

問題 No.558 575検出するやつ
ユーザー tazakkytazakky
提出日時 2017-09-11 19:48:33
言語 PHP
(8.3.4)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 241 bytes
コンパイル時間 1,318 ms
コンパイル使用メモリ 30,828 KB
実行使用メモリ 31,420 KB
最終ジャッジ日時 2024-11-07 17:04:24
合計ジャッジ時間 3,020 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
31,144 KB
testcase_01 AC 39 ms
31,016 KB
testcase_02 AC 39 ms
30,944 KB
testcase_03 AC 39 ms
31,084 KB
testcase_04 AC 39 ms
30,936 KB
testcase_05 AC 38 ms
30,840 KB
testcase_06 AC 39 ms
31,104 KB
testcase_07 AC 40 ms
31,420 KB
testcase_08 AC 42 ms
30,988 KB
testcase_09 AC 42 ms
31,120 KB
testcase_10 AC 41 ms
31,020 KB
testcase_11 AC 40 ms
30,984 KB
testcase_12 AC 39 ms
31,224 KB
testcase_13 AC 38 ms
31,108 KB
testcase_14 AC 38 ms
30,968 KB
testcase_15 AC 38 ms
30,988 KB
testcase_16 AC 38 ms
30,920 KB
testcase_17 AC 37 ms
30,752 KB
testcase_18 AC 37 ms
30,964 KB
testcase_19 AC 38 ms
31,084 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