網易C++面試題--被3整除

來源:互聯網
上載者:User

標籤:str   例子   printf   clu   can   print   一個   數字   name   

小Q得到一個神奇的數列: 1, 12, 123,...12345678910,1234567891011...。

並且小Q對於能否被3整除這個性質高度興趣。

小Q現在希望你能幫他計算一下從數列的第l個到第r個(包含端點)有多少個數可以被3整除。

 

輸入描述:
輸入包括兩個整數l和r(1 <= l <= r <= 1e9), 表示要求解的區間兩端。



輸出描述:
輸出一個整數, 表示區間內能被3整除的數字個數。

 

輸入例子1:
2 5

 

輸出例子1:
3

 

例子說明1:
12, 123, 1234, 12345...
其中12, 123, 12345能被3整除。


判斷一個數能否被3整除:把這個數的所以位加起來,如果能除3餘0,證明這個數能被3整除
#include <bits/stdc++.h>using namespace std;typedef long long LL;int main(){    LL l,r;    scanf("%lld%lld",&l,&r);    int num = 0;    for(LL i=l;i<=r;i++)    {        LL ans = (i+1)*i;        if(ans%6==0) num++;    }    printf("%d\n",num);}

  


網易C++面試題--被3整除

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.