HDU 2099

直接枚举就可以了。

#include <iostream>
#include <cstdio>
#include <algorithm>
#include <vector>
using namespace std;

int a,b;
vector<int> ans;
int main(){
	while(scanf("%d%d",&a,&b)!=EOF){
		if(a==0&&b==0) break;
		ans.clear();
		for(int i=a*100;i<=a*100+99;i++){
			if(i%b==0){
				int tmp=i-a*100;
				ans.push_back(tmp);
			}
		}
		if(ans[0]<10)
		printf("0%d",ans[0]);
		else printf("%d",ans[0]);
		for(int i=1;i<ans.size();i++)
		if(ans[i]<10)
		printf(" 0%d",ans[i]);
		else printf(" %d",ans[i]);
		printf("\n");
	}
	return 0;
}

  

时间: 2024-10-11 05:36:59

HDU 2099的相关文章

HDU 2099 整除的尾数解题思路

整除的尾数 Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 27774    Accepted Submission(s): 11767 Problem Description 一个整数,只知道前几位,不知道末二位,被另一个整数除尽了,那么该数的末二位该是什么呢? Input 输入数据有若干组,每组数据包含二个整数a,b(0<a<100

HDU 2099 整除的尾数

整除的尾数 Problem Description 一个整数,只知道前几位,不知道末二位,被另一个整数除尽了,那么该数的末二位该是什么呢? Input 输入数据有若干组,每组数据包含二个整数a,b(0<a<10000, 10<b<100),若遇到0 0则处理结束. Output 对应每组数据,将满足条件的所有尾数在一行内输出,格式见样本输出.同组数据的输出,其每个尾数之间空一格,行末没有空格. Sample Input 200 40 1992 95 0 0 Sample Outpu

hdu 2099 整除的尾数 (java)

问题: 此题java和其它的要求内存要求是一样的,弄了两遍都超时间. 发现一个专门对付杭电最后一个不要空格的方法,String输出: s=s.substring(0,s.length()-1);去掉字符串最后一个字符.. 整除的尾数 Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 27699    Accepted Submission

HDU 整除的尾数 2099

解题思路:很简单的一道水题,这几天比较忙,没怎么刷题,找找自信,很快1A.   还可以,嘿嘿 1 #include<cstdio> 2 #include<cstring> 3 #include<algorithm> 4 using namespace std; 5 const int maxn = 10; 6 char str[maxn]; 7 int main() 8 { 9 int a, b, sum, flag; 10 while(~scanf("%d

hdu 1719 Friend 数学推导

题链:http://acm.hdu.edu.cn/showproblem.php?pid=1719 Friend Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 2099    Accepted Submission(s): 1058 Problem Description Friend number are defined recur

HDU 3132 Taunt Exposure Estimation(数学)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=3132 Problem Description The brave knights  of Camelot are constantly exposed to French taunting while assaulting the castle occupied by the French. Consequently, the taunting to which they are exposed v

HDU分类

模拟题, 枚举 1002 1004 1013 1015 1017 1020 1022 1029 1031 1033 1034 1035 1036 1037 1039 1042 1047 1048 1049 1050 1057 1062 1063 1064 1070 1073 1075 1082 1083 1084 1088 1106 1107 1113 1117 1119 1128 1129 1144 1148 1157 1161 1170 1172 1177 1197 1200 1201 12

转载:hdu 题目分类 (侵删)

转载:from http://blog.csdn.net/qq_28236309/article/details/47818349 基础题:1000.1001.1004.1005.1008.1012.1013.1014.1017.1019.1021.1028.1029. 1032.1037.1040.1048.1056.1058.1061.1070.1076.1089.1090.1091.1092.1093. 1094.1095.1096.1097.1098.1106.1108.1157.116

HDU——PKU题目分类

HDU 模拟题, 枚举1002 1004 1013 1015 1017 1020 1022 1029 1031 1033 1034 1035 1036 1037 1039 1042 1047 1048 1049 1050 1057 1062 1063 1064 1070 1073 1075 1082 1083 1084 1088 1106 1107 1113 1117 1119 1128 1129 1144 1148 1157 1161 1170 1172 1177 1197 1200 1201