結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 42 ms
30,824 KB
testcase_05 WA -
testcase_06 AC 43 ms
30,904 KB
testcase_07 WA -
testcase_08 AC 42 ms
30,956 KB
testcase_09 AC 43 ms
30,908 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 43 ms
31,300 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 42 ms
30,860 KB
testcase_16 AC 46 ms
31,020 KB
testcase_17 AC 45 ms
31,120 KB
testcase_18 AC 45 ms
31,056 KB
testcase_19 WA -
testcase_20 AC 45 ms
31,120 KB
testcase_21 WA -
testcase_22 AC 42 ms
31,124 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