福尔摩xi
福尔摩xi
全部文章
分类
题解(13)
归档
标签
去牛客网
登录
/
注册
福尔摩xi的博客
全部文章
(共13篇)
题解 | #菱形图案#
分为上下两层循环 第一个循环是圣诞树 第二个循环是倒三角 while True: try: x = int(input()) for i in range(1,x+2): print(' '*(x+1-i),end='') ...
Python3
2022-03-30
0
280
题解 | #[NOIP2015]金币#
天数 1 2 3 4 5 6 7 ... 金额 1 2 2 3 3 3 4 ... 找规律: 1天1 2天11+2 3天11+22 6天11+22+33 7天11+22+33+41 可以看到3天,6天刚好为天数相加,同时为价格平方相加 7天时候是6天的价格+ (7-6)*4 11天的时候是10天的价...
Python3
2022-03-28
0
287
题解 | #变种水仙花#
不会写切片的我=。= for i in range(10000,100000): lis = list(str(i)) a = int(lis[0])*int(lis[1]+lis[2]+lis[3]+lis[4]) b = int(lis[0]+lis[1])*int(li...
Python3
2022-03-28
0
262
题解 | #水仙花数#
while True: try: m,n = map(int,input().split()) temp = m #用来做循环计数 flag = False #用来做标记 while temp < n: ...
Python3
2022-03-28
0
381
题解 | #牛牛学数列4#
不用快速算法跟着题目练习循环=。= 要注意两个循环的初始值要分别在循环外,而不是都在最外层 x = int(input()) sm = 0 i = 1 while i <=x: j = 1 su = 0 while j <= i: su = su ...
Python3
2022-03-23
1
351
题解 | #乘法表#
为了格式正确也是吐血了。。 rjust可以补齐空格,是个字符串函数所以要先转str类型再用 i = 1 while i < 10: j = 1 while j <= i: s = str((i*j)).rjust(2) if j == i:...
Python3
2022-03-23
3
395
题解 | #KiKi求质数个数#
i = 100 co = 0 while i<1000: j = 2 while j < i: if(i%j == 0): break elif(j == i - 1): co = co + ...
Python3
2022-03-23
0
299
题解 | #[NOIP2008]ISBN号码#
lis = list(map(str,input().split('-'))) lis1 = lis[:-1] s = ''.join(lis1) he = 0 j = 1 for i in s: he =int(i)*j + he j = j+1 if he%11 == 10: ...
Python3
2022-03-22
1
408
题解 | #获得月份天数#
while True: try: y,m = map(int,input().split()) if m in (1,3,5,7,8,10,12): print(31) if m in (4,6,9,11): ...
Python3
2022-03-22
0
279
题解 | #牛牛的计划#
a = list(input().split()) a1 = list(input().split()) m = a[1] m1 = a1[1] m = '0'+m if int(m)<10 else m m1 = '0'+m1 if int(m1)<10 else m1 x = int...
Python3
2022-03-22
0
235
首页
上一页
1
2
下一页
末页