1 Star 1 Fork 0

AYO/Algorithm

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
I.py 367 Bytes
一键复制 编辑 原始数据 按行查看 历史
AYO 提交于 2022-06-18 16:39 . 13届蓝桥杯国赛PB-I
import itertools
import re
ore = re.compile('owo')
def getNums(owo):
owo = owo.replace('o', 'oo')
return len(ore.findall(owo))
n = int(input())
sts = []
for i in range(n):
sts.append(input())
rdm_lst = itertools.permutations(sts)
m = 0
for j in rdm_lst:
ls = getNums(''.join(j))
if ls > m:
m = ls
print(m)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/ayo_yo/Algorithm.git
[email protected]:ayo_yo/Algorithm.git
ayo_yo
Algorithm
Algorithm
蓝桥杯_国赛

搜索帮助