NP87. 子串的数量
描述
输入描述
输出描述
示例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'))