苏觅云
苏觅云
全部文章
分类
题解(183)
归档
标签
去牛客网
登录
/
注册
苏觅云的博客
全部文章
(共6篇)
题解 | #美妙的约会#
n = int(input()) n2 = n + n ipt = input().split(' ') arr = [] for i in range(n2): arr.append(int(ipt[i])) ans = 0 while len(arr) > 0: first...
Python3
2022-05-26
0
486
题解 | #高精度整数加法#
while True: try: a = int(input())  ...
Python3
2022-02-23
0
276
题解 | #提取不重复的整数#
s = input() dic = [] for i in range(1, len(s)+1): n = s[-i] &nbs...
Python3
2022-02-23
0
257
题解 | #百钱买百鸡问题#
print('0 25 75') print('4 18 78') print('8 11 81') print('12 4 84')
Python3
2022-02-22
0
316
题解 | #四则运算#
val = eval(input().replace('{', '(').replace('}', ')').replace('[', '(').replace(']', ')')) print(int(val))
Python3
2022-02-22
0
372
题解 | #字符串最后一个单词的长度#
s = input() try: idx = s.rindex(' ') print(len(s)-idx-1) except: ...
Python3
2022-02-22
0
252