結果

問題 No.1534 おなかがいたい
ユーザー nohakai3nohakai3
提出日時 2022-07-01 16:51:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 329 bytes
コンパイル時間 80 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 12,636 KB
最終ジャッジ日時 2024-05-04 10:57:43
合計ジャッジ時間 1,828 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 30 ms
10,624 KB
testcase_03 WA -
testcase_04 AC 27 ms
10,624 KB
testcase_05 WA -
testcase_06 AC 25 ms
10,752 KB
testcase_07 WA -
testcase_08 AC 25 ms
10,624 KB
testcase_09 AC 26 ms
10,752 KB
testcase_10 AC 26 ms
10,624 KB
testcase_11 WA -
testcase_12 AC 77 ms
12,508 KB
testcase_13 AC 54 ms
12,380 KB
testcase_14 AC 57 ms
12,508 KB
testcase_15 AC 30 ms
12,508 KB
testcase_16 AC 86 ms
12,384 KB
testcase_17 AC 91 ms
12,380 KB
testcase_18 AC 88 ms
12,508 KB
testcase_19 AC 30 ms
12,384 KB
testcase_20 AC 111 ms
12,636 KB
testcase_21 WA -
testcase_22 AC 25 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s=list(input())
n=len(s)
l=[]
y=10**6
for i in range(n-3):
    if s[i]=="p" and s[i+1]=="a" and s[i+2]=="i" and s[i+3]=="n":
        y=i
        break

if y==10**6:
    exit(print(-1))


ans=0

for i in range(y-3):
    if s[i]=="p" and s[i+1]=="o" and s[i+2]=="n":
        ans+=1

if ans<=1:
    print(-1)

else:
    print(ans-1)
0