【入门3】循环结构
dllglvzhenfeng
这个作者很懒,什么都没留下…
展开
-
P1035 [NOIP2002 普及组] 级数求和(python3实现)
[NOIP2002 普及组] 级数求和 - 洛谷"""P1035 [NOIP2002 普及组] 级数求和(python3实现)02https://www.luogu.com.cn/problem/P1035"""i=1ans=0k=int(input())while 1: ans+=1/i #i+=1 if ans>k*1.0: print(i)原创 2022-02-01 17:19:18 · 521 阅读 · 0 评论 -
P1423 小玉在游泳(python3实现)
小玉在游泳 - 洛谷"""P1423 小玉在游泳(python3实现)https://www.luogu.com.cn/problem/P1423"""s=2d=0ans=0x=float(input())while d<x: d+=s s=s/100*98 ans+=1print(ans)原创 2022-02-01 19:42:06 · 710 阅读 · 0 评论 -
P1009 [NOIP1998 普及组] 阶乘之和-2022.02.01(python3实现)
[NOIP1998 普及组] 阶乘之和 - 洛谷"""P1009 [NOIP1998 普及组] 阶乘之和-2022.02.01(python3实现)https://www.luogu.com.cn/problem/P1009"""s=0f=1n=int(input())for i in range(1,n+1): f=f*i s+=fprint(s)...原创 2022-02-01 18:39:44 · 172 阅读 · 0 评论 -
P1720 月落乌啼算钱(斐波那契数列)--python3实现
https://www.luogu.com.cn/problem/P1720"""P1720 月落乌啼算钱(斐波那契数列)https://www.luogu.com.cn/problem/P1720"""a=1b=1c=0n=int(input())for i in range(3,n+1): c=a+b a=b b=c print(c,end='.0原创 2022-01-29 01:39:41 · 241 阅读 · 0 评论 -
P1009 [NOIP1998 普及组] 阶乘之和
https://www.luogu.com.cn/problem/P1009/*P1009 [NOIP1998 普及组] 阶乘之和02https://www.luogu.com.cn/problem/P1009*/#include<cstdio>#include<cstring>#include<iostream>#include<cmath>using namespace std;#const int MAXN=4000;//定义高原创 2022-01-28 22:49:27 · 125 阅读 · 0 评论 -
P1420 最长连号(python3实现)
最长连号 - 洛谷"""P1420 最长连号(python3实现)https://www.luogu.com.cn/problem/P1420"""maxn=0n=int(input())a=list(map(int,input().split()))lena=len(a)for i in range(n): s=0 for j in range(i+1,n): if a[j原创 2022-02-01 20:03:37 · 782 阅读 · 0 评论 -
P5724 【深基4.习5】求极差 最大跨度值(python3实现)
https://www.luogu.com.cn/problem/P5724"""P5724 【深基4.习5】求极差 最大跨度值https://www.luogu.com.cn/problem/P5724"""n=int(input())a=list(map(int,input().split()))a.sort()ans=a[n-1]-a[0]print(ans)原创 2022-01-29 01:57:53 · 273 阅读 · 0 评论 -
P5720 【深基4.例4】一尺之棰(python3实现)
【深基4.例4】一尺之棰 - 洛谷"""P5720 【深基4.例4】一尺之棰https://www.luogu.com.cn/problem/P5720"""ans=1a=int(input())while a>1: ans+=1 a//=2print(ans)原创 2022-02-01 18:00:40 · 829 阅读 · 0 评论 -
P5718 【深基4.例2】找最小值(python3实现)-2022.02.01
https://www.luogu.com.cn/problem/P5718"""P5718 【深基4.例2】找最小值(python3实现)-2022.02.01https://www.luogu.com.cn/problem/P5718"""n=int(input())a=list(map(int,input().split()))print(min(a))原创 2022-02-01 16:17:43 · 761 阅读 · 0 评论 -
P5718 【深基4.例2】找最小值
https://www.luogu.com.cn/problem/P5718"""P5718 【深基4.例2】找最小值https://www.luogu.com.cn/problem/P5718"""n=int(input())minnum=1010a=list(map(int,input().split()))lena=len(a) for i in range(lena): if a[i]<minnum:原创 2022-01-29 00:00:10 · 247 阅读 · 0 评论 -
P5722 【深基4.例11】数列求和-2022.02.01(python3实现)
【深基4.例11】数列求和 - 洛谷"""P5722 【深基4.例11】数列求和-2022.02.01(python3实现)https://www.luogu.com.cn/problem/P5722"""sum=0n=int(input())i=1while i<=n: sum+=i i+=1print(sum)...原创 2022-02-01 18:49:00 · 270 阅读 · 0 评论 -
P5719 【深基4.例3】分类平均(python3实现)
【深基4.例3】分类平均 - 洛谷"""P5719 【深基4.例3】分类平均https://www.luogu.com.cn/problem/P5719"""n,k=map( int,input().split() )c=n//ka=c*(c+1)/2*kb=n*(n+1)/2-aprint( "%.1f" %(a/c),end=" " )print( "%.1f" %(b/(n-c)) )...原创 2022-02-02 09:34:25 · 892 阅读 · 0 评论 -
P5723 【深基4.例13】质数口袋-2022.02.01(python3实现)
【深基4.例13】质数口袋 - 洛谷"""P5723 【深基4.例13】质数口袋-2022.02.01(python3实现)https://www.luogu.com.cn/problem/P5723"""lena=0cnt=0prime=[1 for i in range(100010)]lena=int(input())prime[1]=0prime[0]=0for i in range(2,100010): if prime[i]==原创 2022-02-01 19:09:33 · 1006 阅读 · 0 评论 -
P5721 【深基4.例6】数字直角三角形(python3)
【深基4.例6】数字直角三角形 - 洛谷"""P5721 【深基4.例6】数字直角三角形https://www.luogu.com.cn/problem/P5721"""cnt=0n=int(input())for i in range(1,n+1): for j in range(i,n+1): cnt+=1 if cnt<10:原创 2022-02-01 18:10:49 · 5575 阅读 · 1 评论 -
《深入浅出程序设计竞赛(基础篇)》第1部分 语言入门 第3章 分支结构程序设计
P5710 【深基3.例2】数的性质【深基3.例2】数的性质 - 洛谷P5710 【深基3.例2】数的性质(python3实现)P5710 【深基3.例2】数的性质(python3实现)_青少年趣味编程-CSDN博客P5711 【深基3.例3】闰年判断【深基3.例3】闰年判断 - 洛谷P5711 【深基3.例3】闰年判断(python3实现)P5711 【深基3.例3】闰年判断(python3实现)_青少年趣味编程-CSDN博客P5712 【深基3.例4】Apples原创 2022-02-14 14:52:22 · 3323 阅读 · 0 评论 -
P5726 【深基4.习9】打分(python3实现)
【深基4.习9】打分 - 洛谷"""P5726 【深基4.习9】打分https://www.luogu.com.cn/problem/P5726"""ans=0n=int( input() )a=list( map( int,input().split() ) )a.sort()i=1while i<=n-2: ans+=a[i] i+=1print("%.2lf" % (ans/(n-2)) )原创 2022-02-02 10:05:58 · 613 阅读 · 0 评论 -
P5725 【深基4.习8】求三角形(python3实现)
【深基4.习8】求三角形 - 洛谷"""P5725 【深基4.习8】求三角形02https://www.luogu.com.cn/problem/P5725"""cnt=0n=int(input())i=1while i<=n*n: if i%n==1 and i!=1: print() #print("\n")原创 2022-02-02 09:57:20 · 596 阅读 · 0 评论