梦开始的地方 "Hello World!" #include<bits/stdc++.h> using namespace std; int main(){ cout<<"Hello World!"; return 0; } "a+b" #include<bits/stdc++.h> using namespace std; int main(){ int a,b; int c=a+b; cout<<…
Current Time: 2016-03-11 17:45:36 Contest Type: Public Start Time: 2016-03-04 13:00:00 Contest Status: Running End Time: 2016-05-03 13:00:00 Manager: qwerqqq Clone this contest Edit Delete ID Origin Title 1 / 1 Problem A HDU 1045 Fire Net 1 / 1 P…
题目链接:http://www.51nod.com/onlineJudge/questionCode.html#!problemId=1090 找到所有数的和,然后再原数组里二分找符合条件的第三个数. #include <bits/stdc++.h> using namespace std; ; const int maxm = maxn * maxn; typedef struct R { int x, y, z; R(){} R(int x, int y, int z) : x(x), y…
M斐波那契数列 Time Limit: 3000/1000 MS (Java/Others) Memory Limit: 65535/32768 K (Java/Others) Total Submission(s): 2598 Accepted Submission(s): 774 Problem Description M斐波那契数列F[n]是一种整数数列,它的定义如下: F[0] = a F[1] = b F[n] = F[n-1] * F[n-2] ( n > 1 ) 现在给…