上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 42 下一页
摘要: #include<iostream> #include<algorithm> #include<cstdio> #include<cstring> using namespace std; int main(){ char a[105][105]; int i,j,k,n,m; while(scan 阅读全文
posted @ 2021-08-11 16:31 智人心 阅读(41) 评论(0) 推荐(0)
摘要: #include<iostream> #include<cstdio> using namespace std; #define ll long long #include<cmath> void gcd(ll a,ll b,ll&d,ll&x,ll&y){ if(!b){ d = a;x = 1; 阅读全文
posted @ 2021-08-11 15:41 智人心 阅读(29) 评论(0) 推荐(0)
摘要: #include<iostream> #include<cstring> #include<cstdio> #include<queue> using namespace std; struct Node{ int x,y; Node(){ x = 0; y = 0; } Node(int a,in 阅读全文
posted @ 2021-08-11 12:16 智人心 阅读(47) 评论(0) 推荐(0)
摘要: 待解决 阅读全文
posted @ 2021-08-11 10:13 智人心 阅读(28) 评论(0) 推荐(0)
摘要: #include<iostream> #include<cstdio> using namespace std; int main(){ int a,b,c,d; scanf("%d%d%d%d",&a,&b,&c,&d); printf("5*(5-(1/5))\n"); return 0; } 阅读全文
posted @ 2021-08-11 10:06 智人心 阅读(29) 评论(0) 推荐(0)
摘要: #include<iostream> #include<cstdio> #include<cstring> using namespace std; struct Node{ int data[1005]; int n; Node(){ n = 1; memset(data,0,sizeof dat 阅读全文
posted @ 2021-08-10 23:11 智人心 阅读(57) 评论(0) 推荐(0)
摘要: #include<iostream> #include<cstdio> #include<cstring> using namespace std; int main(){ int i,j,len; char data[1005],ans[1005]; while(gets(data)){ len 阅读全文
posted @ 2021-08-10 21:29 智人心 阅读(34) 评论(0) 推荐(0)
摘要: #include<iostream> #include<cstdio> #include<cstring> using namespace std; int gcd(int a,int b){ int t; if(a==0)return b; while(b){ t = a%b; a = b; b 阅读全文
posted @ 2021-08-10 21:19 智人心 阅读(29) 评论(0) 推荐(0)
摘要: #include<iostream> #include<cstdio> #include<cstdlib> #include<cstring> #include<cmath> #include<algorithm> using namespace std; #define ll long long 阅读全文
posted @ 2021-08-10 13:30 智人心 阅读(76) 评论(0) 推荐(0)
摘要: #include<iostream> #include<cstring> #include<cstdio> #include<algorithm> using namespace std; #define ll long long const ll maxn = 20005; typedef pai 阅读全文
posted @ 2021-08-10 12:07 智人心 阅读(42) 评论(0) 推荐(0)
上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 42 下一页