Chri_K

2020年9月8日

P1032-P1039

摘要: #include<iostream> #include<algorithm> using namespace std; int main() { int n,k; cin>>n>>k; int a[10001]; for(int i=1;i<=n;i++) { cin>>a[i]; } sort(a 阅读全文

posted @ 2020-09-08 19:17 Chri_K 阅读(99) 评论(0) 推荐(0) 编辑
P1018-P1020

摘要: #include<iostream> #include<cmath> using namespace std; int main() { int n; cin>>n; int sum=0; for(int i=2;i<=sqrt(n);i++) { if(n%i==0) { sum++; } } i 阅读全文

posted @ 2020-09-08 19:14 Chri_K 阅读(96) 评论(0) 推荐(0) 编辑
P1004-1006

摘要: #include<iostream> using namespace std; int main() { int L,M; cin>>L>>M; int st,en; int tree[10001]; int sum=0; for(int i=0;i<=L;i++) { tree[i]={0}; } 阅读全文

posted @ 2020-09-08 10:24 Chri_K 阅读(68) 评论(0) 推荐(0) 编辑
P1000-1003

摘要: #include <iostream>using namespace std;int main(){ int a,b; cin>>a>>b; cout<<a+b<<endl; return 0;} #include <iostream> using namespace std; int main() 阅读全文

posted @ 2020-09-08 10:20 Chri_K 阅读(103) 评论(0) 推荐(0) 编辑