这名用户暂未设置签名。
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
## P1029(错误)代码如下 ```python3 def f(num): if num > 2: for i in range(2,num): if (num % i) == 0: return False break else: return True elif num==2: return True else…
在讨论《不知道错在哪里,请大家帮忙,python3》回复:
WA了第4个点
## P1059 ### 代码如下 ~~~ u=input( ) t=list(map(int,input().split(" "))) s=[] t.sort() if t[0] t[i-1]: s.append(t[i]) print(len(s)) print(" ".join(map(str,s))) ~~~
在讨论《python3,找不到错误》回复:
我不知道如何修改
## 代码如下 ~~~ s=list(map(int,input().split(" "))) s.sort() a,b,c=s p=float((a*a+b*b-c*c)/2/a/b) if a+b 0: print("Acute triangle") elif p==0: print("Right triangle…
## 只过了前3个点 #### 代码如下 ~~~ import math s,v=map(int,input().split(" ")) u=8 t=math.ceil(s/v)+10 b=t%60 a=t//60 if a>=8: u=32 u=u-a-math.ceil(t/60) if u<10: u="0"+s…
在讨论《python3求助(全RE)》回复:
## 这是我的做法 ~~~ a=input( ) s=list(map(int,input().split(" "))) s.sort() print(s[0]) ~~~
在讨论《帮忙修正代码》回复:
谢谢,题目没看清楚
## 代码入下 ~~~ a,b=map(int,input().split(" ")) s=0 for i in range(a,a+b+1): if not(i%7==6 or i%7==0): s+=250 print(s) ~~~
在讨论《求助小学数学题》回复:
n^2*(n+1)/2
在讨论《6月12日凌晨3:00欧洲杯揭幕战》回复:
0:1
在讨论《萌新求助》回复:
@[林子浩](/user/87461) 谢谢您的支持
在讨论《【沝】关于生日礼物》回复:
@[Push_Y](/user/135485) 超强的
在讨论《【沝】关于生日礼物》回复:
建议送AJ1 "of-white for air jordan"
代码出现问题请大家帮忙检查 ``` #include using namespace std; int main(){ int m1,m2,m3,m4,m5,m6,m7,m8,m9,m10,m11,m12,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11,s12; cin>>m1>>m2>>m3>>…
在讨论《**抄作业**现象》回复:
其实这在高中并不常见,因为有些作业根本没时间写完,而且老师也会理解你“能力有限”
在讨论《最后一个点错大佬求解》回复:
# 给你一个更好的题解 ```c #include using namespace std; int main(){ int a,b; scanf("%d%d",&a,&b); if((((a%4==0)&&(a%100!=0))||(a%100==0)&&((a/100)%4==0))&&b==2) printf("…
在讨论《萌新求助》回复:
谢谢
各位大佬帮忙看一下代码 ```c #include using namespace std; int main(){ int a,b,c; scanf("%d%d%d",&a,&b,&c); if(a>=b&&b>=c) printf("%d %d %d",a,b,c); else if(a>=c&&c>=b) pri…
在讨论《萌新求助》回复:
@[caijianhong](/user/390033) 非常感谢
在讨论《萌新求助》回复:
谢谢各位
# 第四与第七个点WA了 ```c #include using namespace std; int main(){ unsigned long long n; cin>>n; cout<<n*(n-1)*(n-2)*(n-3)/24; return 0; } ```
在讨论《萌新求助》回复:
我将float改成double后还是WA了
# P5708最后一个点WA了 ## 代码如下 ``` #include using namespace std; int main(){ float p,a,b,c; double x; cin>>a>>b>>c; p=(float)(a+b+c)/2; x=sqrt(p*(p-a)*(p-b)*(p-c)); co…