結果

問題 No.1534 おなかがいたい
ユーザー nohakai3nohakai3
提出日時 2022-07-01 16:55:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 327 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 12,640 KB
最終ジャッジ日時 2024-05-04 11:01:01
合計ジャッジ時間 1,729 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 24 ms
10,624 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 24 ms
10,752 KB
testcase_04 WA -
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 28 ms
10,624 KB
testcase_07 WA -
testcase_08 AC 25 ms
10,752 KB
testcase_09 AC 24 ms
10,752 KB
testcase_10 AC 24 ms
10,624 KB
testcase_11 AC 25 ms
10,624 KB
testcase_12 WA -
testcase_13 AC 48 ms
12,516 KB
testcase_14 AC 55 ms
12,636 KB
testcase_15 AC 31 ms
12,508 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 27 ms
12,640 KB
testcase_20 AC 100 ms
12,512 KB
testcase_21 AC 25 ms
10,752 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

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)
0