結果

問題 No.558 575検出するやつ
ユーザー ayaaya
提出日時 2019-07-31 12:04:57
言語 PHP
(8.3.4)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 499 bytes
コンパイル時間 69 ms
コンパイル使用メモリ 32,276 KB
実行使用メモリ 31,688 KB
最終ジャッジ日時 2024-07-05 06:24:18
合計ジャッジ時間 1,395 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
31,344 KB
testcase_01 AC 35 ms
31,340 KB
testcase_02 AC 36 ms
31,336 KB
testcase_03 AC 37 ms
31,132 KB
testcase_04 AC 34 ms
31,400 KB
testcase_05 AC 35 ms
31,400 KB
testcase_06 AC 35 ms
31,324 KB
testcase_07 AC 33 ms
31,472 KB
testcase_08 AC 33 ms
31,264 KB
testcase_09 AC 34 ms
31,560 KB
testcase_10 AC 34 ms
31,596 KB
testcase_11 AC 33 ms
31,680 KB
testcase_12 AC 33 ms
31,512 KB
testcase_13 AC 32 ms
31,528 KB
testcase_14 AC 33 ms
31,480 KB
testcase_15 AC 34 ms
31,040 KB
testcase_16 AC 35 ms
31,096 KB
testcase_17 AC 35 ms
31,104 KB
testcase_18 AC 35 ms
31,680 KB
testcase_19 AC 34 ms
31,688 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
/*
No.558 575検出するやつ
問題文
文字列Sが与えられます。Sが575を含むなら "YES" 、 含まないなら "NO" を出力してください。
575を含むとは、Ssub = "575" となるようなSの部分文字列Ssubが存在する場合を指します。

入力
S
1≤|S|≤100
Sは英数字'a'-'z','A'-'Z','0'-'9'のみで構成される
*/
$str = trim(fgets(STDIN));
$exits=preg_match('/575/',$str);
$ans;
if($exits){
$ans="YES";
}else{
  $ans="NO";
}
echo $ans;

?>
0