摘要: 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2033#include <cstdlib>#include <iostream>using namespace std;int main(int argc, char *argv[]){ int n,residue,quotient; int sum[3]={0},Time[6]={0}; cin>>n; while(n--) { for(int i=0;i<6;i++) { cin>>Time[i]; } sum[... 阅读全文
posted @ 2012-07-31 15:52 Marshalkk 阅读(320) 评论(0) 推荐(0) 编辑
摘要: 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2032做该题时,开始就给出Presentation Error( 程序总体正确,但是输出格式不符合要求!注意程序中的空格、空行)开始的代码:#include <cstdlib>#include <iostream>using namespace std;int main(int argc, char *argv[]){ int n; int Array[31][31]={0}; while(cin>>n) { for(int i=1;i<=n;i++) {. 阅读全文
posted @ 2012-07-31 14:44 Marshalkk 阅读(401) 评论(0) 推荐(0) 编辑
摘要: Status里面的各个状态是什么意思?A: 各状态含义如下: Queuing: 等待评判. Accepted (AC): 恭喜,程序完全符合要求! Presentation Error (PE): 程序总体正确,但是输出格式不符合要求!注意程序中的空格、空行。 Wrong Answer (WA): 输出的答案错了。偶尔,Presentation Error 也会被归类到这个情况,这取决于你的输出。Runtime Error (RE): 程序在运行的过程中出错了,也许是栈溢出、非法指针访问、浮点错误、整数除0。。。 通常会包含一些额外的信息如下: SIGSEGV --- 段错误,通常是栈溢出.. 阅读全文
posted @ 2012-07-31 14:21 Marshalkk 阅读(1482) 评论(0) 推荐(0) 编辑
摘要: #include <cstdlib>#include <iostream>#include <math.h> using namespace std;int main(int argc, char *argv[]){ int n,r; int Remainder[100]={0}; while(cin>>n>>r) { int flag=0,t=n,k=0,Quotient=n; if(n>=0&&n<=r) cout<<n<<endl; if(n>r) { while(Quo 阅读全文
posted @ 2012-07-31 11:08 Marshalkk 阅读(406) 评论(0) 推荐(0) 编辑