結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 WA -
testcase_05 AC 25 ms
10,752 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 WA -
testcase_08 AC 28 ms
10,624 KB
testcase_09 AC 27 ms
10,624 KB
testcase_10 AC 26 ms
10,752 KB
testcase_11 AC 26 ms
10,752 KB
testcase_12 WA -
testcase_13 AC 49 ms
12,512 KB
testcase_14 AC 54 ms
12,512 KB
testcase_15 AC 33 ms
12,516 KB
testcase_16 WA -
testcase_17 AC 86 ms
12,380 KB
testcase_18 WA -
testcase_19 AC 29 ms
12,508 KB
testcase_20 AC 98 ms
12,380 KB
testcase_21 AC 25 ms
10,624 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-3
        break

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


ans=0

for i in range(y-2):
    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