結果

問題 No.1534 おなかがいたい
ユーザー SKSK
提出日時 2022-12-20 18:08:21
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 223 bytes
コンパイル時間 76 ms
コンパイル使用メモリ 30,724 KB
実行使用メモリ 31,228 KB
最終ジャッジ日時 2024-04-29 02:52:48
合計ジャッジ時間 1,845 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 40 ms
30,984 KB
testcase_05 WA -
testcase_06 AC 41 ms
30,904 KB
testcase_07 WA -
testcase_08 AC 39 ms
30,768 KB
testcase_09 AC 40 ms
30,996 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 42 ms
30,988 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 40 ms
31,004 KB
testcase_16 AC 44 ms
31,120 KB
testcase_17 AC 43 ms
31,116 KB
testcase_18 AC 44 ms
30,996 KB
testcase_19 WA -
testcase_20 AC 44 ms
30,988 KB
testcase_21 WA -
testcase_22 AC 40 ms
31,060 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$a = trim(fgets(STDIN));

$n =strpos($a,"pain");


$word1 = mb_substr($a,0,$n-1);

$count = substr_count($word1,"pon");

if($count == 2){
    echo 1;
}elseif($count > 2){
    echo $count - 1;
}else{
    echo -1;
}

?>
0