編寫乙個程式,求sn=a+aa+aaa+……+aa…aaa(有n個a)的值,其中a是乙個數字。
input
輸入資料含有不多於50組的資料,每組資料由兩個正整數(0
output
對於每組資料a和n,計算sn=a+aa+aaa+……+aa…aaa(有n個a)的值,每個計算結果應單獨一行。
sample input
5 2sample output5 1
60source5
#include #include int main()
{ long long s,t,i,c = 1;
int a,n;
while ( 2 == scanf("%d%d",&a,&n))
{t = 1;
c=10;
s=0;
t = pow(10.0,(double)(n));
for ( i=a; i
AKOJ 1298 B趣味求和
b趣味求和 time limit 1000ms memory limit 65536k total submit 397 accepted 144 原題鏈結 description 編寫乙個程式,求sn a aa aaa aa aaa 有n個a 的值,其中a是乙個數字。input 輸入資料含有不多於...
BNU校賽B題 多重求和
題意就不再複述了,比較容易理解 這道題我推了半天公式沒推出來 賽後發現是因為當時有乙個沒有約分導致之後的猜想錯誤 這道題在這場比賽中是由我們學校的大二的張航學長一血的 十分佩服 其實公式也不是特別難推 找規律應該能找到 其實我都找了一半了 最後因為沒有約分進入了錯誤的猜想 其實找到通項公式之後就是一...
趣味問題之趣味整數
coding utf 8 created on thu nov 17 16 52 17 2016 author alis 趣味百題之趣味整數 求乙個數的所有因子 def factors num p 1 q num a while p q if num p 0 p 1 q num p a.sort r...