代码拉取完成,页面将自动刷新
# -*- coding: utf-8 -*-
# @project : 《Atcoder》
# @Author : created by bensonrachel on 2021/7/6
# @File : arc 108 B - Abbreviate Fox.py
N = int(input())
s = str(input())
char = ""
for i in s:
char = char + i
if (char[-3:] == "fox"):
char = char[:-3]
print(len(char))
#模拟消消乐的场景,遍历每个s中的元素,一个个来,不断消,像消消乐一样。硬解的话会超时的。
"""
硬解(3种):
N = int(input())
s = str(input())
while("fox" in s):
s = s.replace("fox","")
print(len(s.replace("fox","")))
N = int(input())
s = str(input())
while(s.find("fox")!= -1):
s = s.replace("fox","")
print(len(s))
N = int(input())
s = str(input())
while(s.count("fox")>0):
s = s.replace("fox","")
print(len(s))
"""
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。