stf
stf
全部文章
题解
归档
标签
去牛客网
登录
/
注册
stf的博客
全部文章
/ 题解
(共4篇)
题解 | #统计每个月兔子的总数#
a = int(input().strip()) s = [1] #列表记录所有兔子的月份。当前是第一只兔子 1月大 。 i = 1 while i <= a: for j in range(len(s)): #遍历兔子列表。如果兔子月份大于等于3月,就新...
Python3
2022-03-29
0
249
题解 | #简单错误记录#
def get_name(s): s1 = s.split()[0] s2 = s.split()[1] name = s1.split('\\')[-1] if len(name) &g...
Python3
2022-03-21
2
264
题解 | #坐标移动#
s = input().strip().split(';') m = [] for i in s: #只有两种坐标情况:1、('A','S','D','W')+一个数字 2、('A','S','D','W')+两个数字,其他弃置。 if len(i) == 2...
Python3
2022-03-20
24
1067
题解 | #大数加法#
代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 计算两个数之和 @param s string字符串 表示第一个整数 @param t string字符串 表示第二个整数 @return string字符串 class Solution: def solve(self,...
Python3
2022-01-24
1
493