Alex0319
Alex0319
全部文章
PAT
poj(16)
算法(1)
题解(30)
归档
标签
去牛客网
登录
/
注册
欲买桂花同载酒,终不似,少年游
保持好奇,保持积极
全部文章
/ PAT
(共11篇)
PAT A 1065 正溢和负溢
#include<cstdio> using namespace std; typedef long long ll; int main() { int n; ll a,b,c; scanf("%d",&n); for(int ...
PAT
2019-09-08
0
740
PAT A 1093 递推
/* 递推,A前面有多少个P,后面有多少个T,把个数相乘就是以这个A为中心,pat的个数 */ #include<cstdio> #include<cstring> using namespace std; const int N =1e5; const int mo...
PAT
2019-09-07
0
583
PAT A 1058 water
``/* g不用取余,醉了,哪怕g>1e7都不要取余,搞得我wa一次 水题,进制的计算*/#include<cstdio>using namespace std;int main(){ int g,s,k; int g1,s1,k1; scanf(&q...
PAT
2019-09-07
0
562
PAT 1028 结构体sort
#include<cstdio> #include<algorithm> #include<cstring> using namespace std; const int N = 1e5; struct Node { int id; char na...
PAT
2019-09-05
0
560
PAT A 1041
#include<cstdio> using namespace std; int vis[100005] = {0}; int num[100005] = {0}; int main() { int n,i; scanf("%d",&n); ...
PAT
2019-09-04
0
589
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
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
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
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
首页
上一页
1
2
下一页
末页