题解列表

筛选

1116: IP判断 python

摘要: def qiandao0(li): for j in range(1,len(li)): if li[j] != '0' and li[j-1] =……

1115: DNA python版本

摘要:```python N = int(input()) for z in range(N): if z != 0: print() a,b=map(int,input().strip(……

1095 清晰解答

摘要:解题思路:注意事项:就是坑,考虑的细节较多参考代码:while True:    try:        i,j = map(int,input().split())        print(i,j……

1111: Cylinder ,python版本

摘要:pi = 3.14159265358while True: try: w,h=map(int,input().strip().split()) if w == 0 and h == 0:    ……

1171: 蟠桃记

摘要:解题思路:从最后一天往前推注意事项:参考代码:while True:    n=int(input())    s=1    for i in range(n-1):        s=(s+1)*2……