1 Star 1 Fork 0

bensonrachel/Atcoder_algorithm

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
B - Abbreviate Fox.py 769 Bytes
一键复制 编辑 原始数据 按行查看 历史
# -*- 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))
"""
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/bensonrachel/atcoder_algorithm.git
git@gitee.com:bensonrachel/atcoder_algorithm.git
bensonrachel
atcoder_algorithm
Atcoder_algorithm
master

搜索帮助