結果

問題 No.1534 おなかがいたい
ユーザー 𖧱𖦸𖥩𖥣𖥩𖥣𖧱𖦸𖥩𖥣𖥩𖥣
提出日時 2024-07-05 12:59:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 312 bytes
コンパイル時間 478 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-07-05 12:59:40
合計ジャッジ時間 2,631 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

s = input()
import sys
pon1 = 0
pon2 = 0
pain1 = 0
for i in s:
	if i == "pon"[pon2]:
		pon2 += 1
	else:
		pon2 = 0
		pon1 = 0
	if pon2 == 3:
		pon2 = 0
		pon1 += 1
	if i == "pain"[pain1]:
		pain1 += 1
	else:
		pain1 = 0
	if pain1 == 4:
		if pon1 == 0:
			print(-1)
		else:
			print(pon1)
		sys.exit()
print(-1)
	
0