HDU 2009 整除的尾數 題解

2021-06-23 00:00:22 字數 661 閱讀 7603

problem description

乙個整數,只知道前幾位,不知道末二位,被另乙個整數除盡了,那麼該數的末二位該是什麼呢?

input

輸入資料有若干組,每組資料報含二個整數a,b(0

output

對應每組資料,將滿足條件的所有尾數在一行內輸出,格式見樣本輸出。同組資料的輸出,其每個尾數之間空一格,行末沒有空格。

sample input

200 40

1992 95

0 0

sample output

00 40 80

15

後面兩位,目測,判斷得最大不過100,那麼可以暴力搜尋了。

模擬:直接把後面兩位的數值接上,然後測試是否可以除盡。

#include int main()

}

} putchar('\n');

} return 0;

}

或者直接使用模的特性來做:

#include int main()

putchar('\n');

} return 0;

}

HDU 整除的尾數

problem description 乙個整數,只知道前幾位,不知道末二位,被另乙個整數除盡了,那麼該數的末二位該是什麼呢?input 輸入資料有若干組,每組資料報含二個整數a,b 015 1.輸出printf 0 d r 解鎖了個新錯誤 runtime error integer divide ...

hdu 2099 整除的尾數

從這個題目領悟了自己之前沒有注意的一些東西,在後面總結,這裡先貼 include include include using namespace std int main int cnt 0 for int i 0,j 0 i 100 i if a 100 i b 0 cout 1 在開陣列的時候c...

hdu 2099 整除的尾數

problem description 乙個整數,只知道前幾位,不知道末二位,被另乙個整數除盡了,那麼該數的末二位該是什麼呢?input 輸入資料有若干組,每組資料報含二個整數a,b 0 output 對應每組資料,將滿足條件的所有尾數在一行內輸出,格式見樣本輸出。同組資料的輸出,其每個尾數之間空一...