Codeforces Round #262 (Div. 2) C. Present...
分类:
其他好文 时间:
2014-08-21 11:36:04
阅读次数:
162
Codeforces Round #262 (Div. 2)解题报告...
分类:
其他好文 时间:
2014-08-21 11:35:04
阅读次数:
149
Codeforces Round #262 (Div. 2) B. Little Dima and Equation...
分类:
其他好文 时间:
2014-08-21 09:50:03
阅读次数:
163
题目链接BLittle Dima and Equation题意:给a, b,c 给一个公式,s(x)为x的各个位上的数字和,求有多少个x.分析:直接枚举x肯定超时,会发现s(x)范围只有只有1-81,所以枚举一下就行。在做题的时候,用了pow()错了3次,很奇怪的是比完赛以后,我看cf的第一组数据竟...
分类:
其他好文 时间:
2014-08-21 09:42:14
阅读次数:
193
A. Vasya and Socks题意:起初给你n双袜子,每天穿一双,每到m天会多一双新的,求有多少天有袜子穿题解:模拟即可代码: 1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 #include 8 #inc...
分类:
其他好文 时间:
2014-08-21 09:33:23
阅读次数:
211
A. Rewards
水题
#include
#include
#include
using namespace std;
int main()
{
int a1,a2,a3,b1,b2,b3,s,t1,t2,sum1,sum2;
while(scanf("%d%d%d",&a1,&a2,&a3)!=EOF)
{
scanf("%d%d%d"...
分类:
其他好文 时间:
2014-08-20 21:10:43
阅读次数:
380
A Round Peg in a Ground Hole
Time Limit: 1000MS
Memory Limit: 10000K
Total Submissions: 5301
Accepted: 1662
Description
The DIY Furniture company specializes in assem...
分类:
其他好文 时间:
2014-08-20 21:08:02
阅读次数:
263
QS Network
Time Limit: 2 Seconds Memory Limit: 65536 KB
Sunny Cup 2003 - Preliminary Round
April 20th, 12:00 - 17:00
Problem E: QS Network
In the planet w-503 of galaxy cgb, there ...
分类:
Web程序 时间:
2014-08-20 16:27:32
阅读次数:
249
Codeforces Round #257 (Div. 1) CCodeforces Round #257 (Div. 1) ECF450EC. Jzzhu and Applestime limit per test1 secondmemory limit per test256 megabytes...
分类:
移动开发 时间:
2014-08-20 16:08:02
阅读次数:
329
NSLog(@"平方:%.f", pow(3,2) );//result 9NSLog(@"上舍入:%.f", ceil(3.000000000001));//result 4NSLog(@"四舍五入:%.f",round(3.30));//result 3NSLog(@"下舍入:%0.f",flo...
分类:
其他好文 时间:
2014-08-20 15:44:22
阅读次数:
179