hdu 2099 整除的尾數
整除的尾數
Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 25133 Accepted Submission(s): 10590
Problem Description
一個整數,只知道前幾位,不知道末二位,被另一個整數除盡了,那麼該數的末二位該是什麼呢?
Input
輸入數據有若干組,每組數據包含二個整數a,b(0
Output
對應每組數據,將滿足條件的所有尾數在一行內輸出,格式見樣本輸出。同組數據的輸出,其每個尾數之間空一格,行末沒有空格。
Sample Input
200 40
1992 95
0 0
Sample Output
00 40 80
15
#include
#include
using namespace std;
int main(){
int n,m;
while(cin>>n>>m){
if(n==0 && m==0) break;
int a[105]={0};
int i,j,r=0;
for(i=0;i<100;i++){
if((i+n*100)%m==0)
a[r++]=i;
}
for(i=0;i