一道acm,明明是对的啊,怎么就是wrong anwser
你的程序在每组输出之间没有空行吧。建议使用gets(a)来读取一行数据。
...的代码输出效果一样,为什么提交还是wrong anwser??
【中间结果】n*(n+1) 很容易就超出了【最终结果 R】 的。题目里面限定了【最终结果 R】是不超过 int 类型的范围的,这样用公式 f1 的话,【所有中间结果】都不会超过【最终结果 R】,也就不会超过 int 类型的范围;这样用公式 f2的话,有些【中间结果】会超过【最终结果 R】,也就【可能会...
acm编程题(c语言,一道),自己运行没错,但AC不了,老是Wrong Anwser...
会不会是 b=(int)(q*a)%zhi[i];要改成 b=(unsigned __int64)(q*a)%zhi[i];
acm编程题(c语言,一道),自己运行没错,但AC不了,老是Wrong Anwser...
int main(){ int t,i,j,b[101]={0};char a[100];int n,m,temp;scanf("%d",&t);while(t){ m=0;scanf("%d",&n);scanf("%s", a);for(i=0;i<n;i++){ for(j=0;j<n;j++){ if(a[i]==a[j]){ b[i]++;} } if(m...
航电ACM 1002题,为什么老是“Wrong Anwser”,求大神指点!!
下面是我AC的代码!include<stdio.h> include<string.h> int aa[1001],bb[1001],sum[1002];void add(char a[],char b[]);int main(){ char a[1001],b[1001];int n,count=1;scanf("%d",&n);while(n--){ scanf("%s%s",a,b);if(count>1)printf("\\n");printf("Case %d:\\...
我的程序哪错了,老是AC不了?总是wrong anwser!!!
\/\/你小子妈的眼睛就跟张屁眼上没区别,大小写区别看不见???!!!还有他TMD妈的可没说结尾补空行 \/\/cout<<"set #"<<++j<<endl<<"The minimum number of moves is " <<k<<'.'<<endl<<endl;cout<<(j>0?"\\n":"")<<"Set #"<<++j<<endl<<"The minimum number of moves...
谁能帮我介绍一下ACM竞赛吗?
2.Wrong Anwser. ---答案错。(WA)3.RunTime Error. ---程序运行出错,意外终止等。(RTE)4.Time Limit Exceeded. ---超时。程序没在规定时间内出答案。(TLE)5.Presentation Error. ---格式错。程序没按规定的格式输出答案。(PE)6.Memory Limit Exceeded. ---超内存。程序没在规定空间内出...
ACM输入格式问题
\/\/正如楼上所说的,这题是高精加法运算,模拟一下就可以了,给我写的代码你参考下,注意,输出格式……很容易PE的 include<iostream> include<string> using namespace std;string add(string a,string b){ int i,j,k,flag=0;char str[2];string c="";for(i=a.length()-1,j=b.length...