結果

問題 No.1592 Tenkei 90
ユーザー SKSK
提出日時 2023-01-11 17:57:28
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 213 bytes
コンパイル時間 581 ms
コンパイル使用メモリ 18,724 KB
実行使用メモリ 19,072 KB
最終ジャッジ日時 2023-08-23 23:55:05
合計ジャッジ時間 2,183 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 16 ms
18,792 KB
testcase_06 AC 15 ms
18,928 KB
testcase_07 AC 16 ms
19,024 KB
testcase_08 AC 16 ms
18,904 KB
testcase_09 AC 15 ms
18,956 KB
testcase_10 AC 15 ms
18,896 KB
testcase_11 AC 16 ms
18,788 KB
testcase_12 AC 15 ms
18,868 KB
testcase_13 AC 15 ms
19,020 KB
testcase_14 AC 16 ms
18,948 KB
testcase_15 AC 16 ms
18,892 KB
testcase_16 AC 15 ms
18,952 KB
testcase_17 WA -
testcase_18 AC 15 ms
18,844 KB
testcase_19 AC 16 ms
18,860 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$s = trim(fgets(STDIN));
$count =0;

for ($i = 0; $i < 14; $i++) {
     if (strpos("kyoprotenkei90",$s[$i])) {
         $count++;
     } 
     
}

if($count ==14){
    echo "Yes";
}else{
    echo "No";
}

?>
0