主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
老猫
小学渣
关注
发消息
文章
0
题解
60
发帖
0
笔记
0
Ta的粉丝
361
关注数
1
粉丝数
361
获赞数
43
阅读数
524588
简单思路
思路: 1、对N!分解质因数,所以分别对1、2、3……N分解质因数,然后用一个数组下标记录该质因数的个数 2、对a分解质因数,然后计算相同质因数下,1步质因数个数除以2步质因数个数的最小值即为所求 #include <bits/std...
P1284
2021年1月17日 10:18
回复 0
|
赞 2
|
浏览 9.2k
记录
#include <bits/stdc++.h> using namespace std; int main() { int n; while(cin>>n) { int flag2=1; for(int i=11;i<n;i=i...
P1375
2021年1月16日 17:15
回复 0
|
赞 0
|
浏览 8.0k
过
#include <bits/stdc++.h> using namespace std; int main() { int n; while(cin>>n) { if(n<=1) cout<<"no"<&...
P1355
2021年1月16日 15:59
回复 0
|
赞 0
|
浏览 7.6k
简洁
#include <bits/stdc++.h> using namespace std; int gcd(int a,int b) { if(b==0) return a; else return gcd(b,a%b); } int main()...
P1426
2021年1月16日 13:10
回复 0
|
赞 0
|
浏览 7.5k
记录
#include <bits/stdc++.h> using namespace std; int main() { int a[1000]; int n,q; while(cin>>n) { for(int i=0;i<n;i...
P1383
2021年1月15日 11:54
回复 0
|
赞 0
|
浏览 7.4k
菜鸡做法
1思路简单,细节很多 #include <iostream> #include <string> #include <string.h> #include<algorithm> #include <vector> ...
P1310
2021年1月13日 23:26
回复 0
|
赞 0
|
浏览 9.6k
简洁
1、制作出所有后缀 2、排序 #include <bits/stdc++.h> using namespace std; bool compare(string a,string b) { return a<b; } int main() { ...
P1294
2021年1月13日 11:58
回复 0
|
赞 1
|
浏览 8.6k
1
#include <iostream> #include <string> #include <string.h> #include<algorithm> using namespace std; struct stre { ...
P1261
2021年1月13日 11:20
回复 0
|
赞 0
|
浏览 7.2k
简洁
#include <iostream> #include <string> #include <string.h> #include<algorithm> using namespace std; bool compare(ch...
P1254
2021年1月13日 09:34
回复 0
|
赞 0
|
浏览 7.7k
亢龙有悔
#include <iostream> #include <string> #include <string.h> #include<algorithm> using namespace std; bool compare(in...
P1248
2021年1月13日 09:23
回复 0
|
赞 0
|
浏览 7.7k
sort
#include <iostream> #include <string> #include <string.h> #include<algorithm> using namespace std; struct student ...
P1159
2021年1月12日 20:36
回复 0
|
赞 0
|
浏览 8.7k
简洁
#include <bits/stdc++.h> using namespace std; int main() { string s; cin>>s; int len=s.size(); int a[100]={0}; for(int i...
P1027
2021年1月12日 15:50
回复 0
|
赞 3
|
浏览 8.9k
记录
#include <bits/stdc++.h> using namespace std; int main() { char s[300]; while(gets(s)) { int len=strlen(s); int cnt=0; fo...
P1394
2021年1月12日 15:16
回复 0
|
赞 0
|
浏览 8.8k
过
#include<iostream> #include <string> #include<cstdlib> using namespace std; int main() { string s; while(cin>>...
P1292
2021年1月12日 11:54
回复 0
|
赞 0
|
浏览 8.4k
用两个字符串
#include<iostream> #include <string> #include<cstdlib> using namespace std; int main() { string s1,s2="",s3=""; cin>...
P1012
2021年1月12日 11:38
回复 0
|
赞 0
|
浏览 8.0k
过
#include<iostream> #include <string> #include<cstdlib> using namespace std; int main() { string s; while(cin>>s)...
P1014
2021年1月12日 11:05
回复 0
|
赞 0
|
浏览 8.2k
换汤不换药
#include<iostream> #include <string> #include<cstdlib> using namespace std; int main() { int n; int now_hour=13,no...
P1053
2021年1月11日 21:59
回复 0
|
赞 0
|
浏览 6.0k
同其他日期题
#include<iostream> #include <string> using namespace std; int main() { int month[2][13]= {{0,31,28,31,30,31,30,31,31,30,31,...
P1446
2021年1月11日 21:40
回复 0
|
赞 0
|
浏览 8.5k
一个思路
#include<iostream> #include <string> using namespace std; int main() { int m,n; int month[2][13]= {{0,31,28,31,30,31,30,3...
P1410
2021年1月11日 20:30
回复 0
|
赞 0
|
浏览 8.3k
最简单的暴力算法
这道题机试的话,我觉得最快的是暴力算法,毕竟思考年份啥的+1-1的关系比较费脑细胞 算法的思想是,从较小的时间开始,一天一天的加,加到和较大的时间一样为止。看加了多少次。 这样思路就很清晰了 #include<iostream> #include <s...
P1290
2021年1月11日 20:02
回复 0
|
赞 2
|
浏览 9.5k
1
2
3
本科学校:华南理工大学
目标学校:华南理工大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!