meichuan
meichuan
全部文章
分类
题解(42)
归档
标签
去牛客网
登录
/
注册
meichuan的博客
全部文章
(共38篇)
题解 | #高精度整数加法#
这也是中等题? 只能说python太稳了 str1 = input() str2 = input() print(int(str1)+int(str2))
Python3
2022-03-19
0
299
题解 | #完全数计算#
num = int(input()) def isperfect(num): perfect_list = [] for i in&n...
Python3
2022-03-19
0
274
题解 | #挑7#
num = int(input()) count = 0 for i in range(1,num+1): if i % 7 == ...
Python3
2022-03-19
0
297
题解 | #四则运算#
#人生苦短,我用python str1 = input() str1 = str1.replace('{', '(').replace('}', ')').replace('[', '(').replace(']', '...
Python3
2022-03-19
0
257
题解 | #从单向链表中删除指定值的节点#
input_data = input().split() table_list = [input_data[3],input_data[2]] def insert_node(num1,num2): g...
Python3
2022-03-19
0
266
题解 | #名字的漂亮度#
def main(word): abc = 'abcdefghijklmnopqrstuvwxyz' data = {} &nbs...
Python3
2022-03-19
0
300
题解 | #称砝码#
num = int(input()) weight_list = [] wight = input().split(' ') count = input().split(' ') for i...
Python3
2022-03-19
4
342
题解 | #求小球落地5次后所经历的路程和第5次反弹的高度#
hight = int(input()) total_hight = hight for i in range(4): hight = hight/2  ...
Python3
2022-03-18
0
224
题解 | #统计每个月兔子的总数#
month = int(input()) def tuzi(month): new_num1 = 1 new_num2 = 0 &nb...
Python3
2022-03-18
0
295
题解 | #字符串加密#
word = input() secret = input() word_list = 'abcdefghijklmnopqrstuvwxyz' new_word = [] for i in ...
Python3
2022-03-18
0
348
首页
上一页
1
2
3
4
下一页
末页