列表

详情


NP87. 子串的数量

描述

牛客网喜欢'Niu'这个词,各个地方的称号、标语都会出现。现在给你一定长字符串patten,你能使用count函数找到'Niu'在其中出现的次数吗?

输入描述

输入一行字符串patten。

输出描述

输出'Niu'在patten中出现的次数,为非负数。

示例1

输入:

IamNiuNiuFromNiuKeWang

输出:

3

原站题解

Python 3 解法, 执行用时: 31ms, 内存消耗: 4556KB, 提交时间: 2022-08-04

patten=str(input())
print(patten.count('Niu'))

Python 3 解法, 执行用时: 32ms, 内存消耗: 4512KB, 提交时间: 2022-07-27

p=input()
a=p.count('Niu')
print(a)

Python 3 解法, 执行用时: 32ms, 内存消耗: 4560KB, 提交时间: 2022-08-02

#!/usr/bin/python
# -*- coding: UTF-8 -*-




patten=input()
print(patten.count("Niu"))

Python 3 解法, 执行用时: 32ms, 内存消耗: 4568KB, 提交时间: 2022-07-30

patten=input()
x='Niu'
print(patten.count(x))

Python 3 解法, 执行用时: 32ms, 内存消耗: 4656KB, 提交时间: 2022-08-02

a = str(input())
print(a.count('Niu'))

上一题