結果

問題 No.1592 Tenkei 90
ユーザー SKSK
提出日時 2023-01-11 17:57:28
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 213 bytes
コンパイル時間 3,943 ms
コンパイル使用メモリ 32,016 KB
実行使用メモリ 32,532 KB
最終ジャッジ日時 2024-06-01 21:22:20
合計ジャッジ時間 4,357 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 38 ms
32,400 KB
testcase_06 AC 36 ms
32,400 KB
testcase_07 AC 39 ms
32,528 KB
testcase_08 AC 37 ms
32,276 KB
testcase_09 AC 37 ms
32,272 KB
testcase_10 AC 37 ms
32,276 KB
testcase_11 AC 36 ms
32,404 KB
testcase_12 AC 35 ms
32,144 KB
testcase_13 AC 35 ms
32,148 KB
testcase_14 AC 36 ms
32,016 KB
testcase_15 AC 36 ms
32,148 KB
testcase_16 AC 36 ms
32,404 KB
testcase_17 WA -
testcase_18 AC 38 ms
32,272 KB
testcase_19 AC 36 ms
32,532 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