题解列表

筛选

大数计算用Python爽到爆

摘要:import sys sys.set_int_max_str_digits(50000000)# 增加到50000000位 n=int(input()) s=1 for i in range(……

一行代码解决

摘要:print(len([i for i in list(map(int, input().split())) if i & (i - 1) == 0]) if input() else 0)……

对方干净利落的特点

摘要:解题思路:无注意事项:无参考代码:print("**************************")print("Hello World!")print("********************……

趣味儿童与人格不好

摘要:解题思路:无注意事项:无参考代码:b=input()b=int(b)e=0for i in range(2,b):    if b%i==0:        e=1        breakif e=……

球弹跳高度

摘要:解题思路:累加高度注意事项:参考代码:h=int(input())m=hfor i in range(10):    m=m+h    h=h/2print('%g'%m)print(……

2836: 数组逆序重放

摘要:解题思路:注意事项:参考代码:n=int(input())s=list(map(int,input().split()))sq=s[::-1]print(*sq)……