Alex0319
Alex0319
全部文章
分类
PAT(11)
poj(16)
算法(1)
题解(30)
归档
标签
去牛客网
登录
/
注册
欲买桂花同载酒,终不似,少年游
保持好奇,保持积极
全部文章
(共78篇)
poj2070 水题
#include<cstdio> using namespace std; int main() { double a,b,c; bool f = true; double player[3][3]={{4.5,150,200},{6.0,300,500},{5....
poj
WATER
2019-09-04
0
728
PAT A 1027
#include<cstdio> #include<string> using namespace std; int main() { int a,b,c; char num[15] = {'0','1','2','3','4','5','6','7','8'...
PAT
2019-09-03
0
519
poj1595 0ms water
#include<cstdio> using namespace std; //water //素数打表基操吧, 然后预处理维护一个前缀和就好了 const int N = 1000; bool Prim[N+5]= {0}; int sum[N+5]= {0}; void Print...
poj
WATER
2019-09-03
0
563
PAT A 1008
/* unknown words : denote: 表示 specified: 特定的 fulfill: 完成,履行,满足 */ /* 按题意做就好了,暴力模拟 */ #include<cstdio> using namespace std; int...
PAT
2019-09-02
0
431
PAT A 1005
/* 没必要数组保存,直接getchar 然后转化成英文就好了 */ #include<cstdio> #include<string> using namespace std; int main() { int c; int sum = 0;...
PAT
2019-09-02
0
426
poj1491水题
#include<cstdio> #include<cmath> #include<algorithm> using namespace std; //water int GCD(int a,int b) { if(a<b) swap...
poj
WATER
2019-09-02
0
471
PAT A 1120
先刷水题吧 #include<cstdio> using namespace std; int get_sum(int n) { int sum = 0; while(n) { sum += n%10; n /= 10; }...
PAT
2019-09-01
0
420
poj2080 110ms 求日期
求日期和星期,不查怎么知道2000.1.1是星期六呢 #include<cstdio> using namespace std; //2000.1.1 星期六 //暴力吧,想不出什么捷径 bool is_leapyear(int n) { return ((n%4==0&...
poj
WATER
Violent
2019-09-01
0
637
PAT A 1002
注意:非零项不用输出且不算在总个数内由于这点开始一直17分 #include<cstdio> using namespace std; const int N = 1e3+5; int main() { int k,n; double a; double num[...
PAT
2019-08-31
0
503
poj3852 字符串指针的使用
#include<cstdio> #include<cstring> using namespace std; //char *s1 = &str[i][ans];表示取第i行 从ans位置开始的字符串 //想到的唯一难点就是如何把截取的字符串去除,开始想了subst...
poj
WATER
2019-08-31
0
603
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页