主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
chenjwhz
2022年6月10日 19:13
暴力枚举首和尾的数字
P1274
回复 0
|
赞 1
|
浏览 5.1k
题意: 给出一个n和一个三位数! 要你在这个三位数的首和尾个添加一个数字!组成五位数!要这个五位数能整除 n ,并且要最大! PS: 直接for两层,枚举首和尾的数字即可!首尾不能为0! 代码如下: #include <cstdio> int main() { int n; int a, b, c; int flag; while (scanf("%d",&n) != EOF) { scanf("%d%d%d",&a,&b,&c); ...
想想y总会怎么做
2022年3月26日 21:35
暴力枚举
P1274
回复 0
|
赞 1
|
浏览 5.2k
万位从9枚举到1 个位从9枚举到0 找到最大值时则退出循环,输出答案即可 #include <iostream> using namespace std; int n; int x,y,z; int a,b; int main() { while(cin>>n) { cin>>x>>y>>z; bool flag=false; for(a=9;a>=1;a--)//从大到小枚举万位 { ...
老猫
2021年1月20日 20:56
暴力
P1274
回复 0
|
赞 0
|
浏览 8.6k
#include<bits/stdc++.h> using namespace std; int main() { int n,x,y,z,re1,re2; while(cin>>n>>x>>y>>z) { vector<int>a; for(int i=1;i<10;i++) for(int j=0;j<10;j++) { int shu=i*10000+x*1000+y*100+z*10+j; if(shu%n==0) ...
题目
Old Bill
题解数量
3
发布题解
热门题解
1
暴力枚举首和尾的数字
2
暴力枚举
3
暴力