結果

問題 No.1185 完全な3の倍数
ユーザー sakaki_tohrusakaki_tohru
提出日時 2020-08-22 13:33:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 893 bytes
コンパイル時間 954 ms
コンパイル使用メモリ 85,320 KB
実行使用メモリ 28,980 KB
最終ジャッジ日時 2024-11-24 09:21:25
合計ジャッジ時間 3,464 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
25,472 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 65 ms
24,316 KB
testcase_04 AC 76 ms
27,316 KB
testcase_05 AC 70 ms
25,728 KB
testcase_06 AC 66 ms
24,704 KB
testcase_07 AC 66 ms
24,192 KB
testcase_08 AC 85 ms
28,980 KB
testcase_09 AC 1 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 1 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 1 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 1 ms
5,248 KB
testcase_19 AC 21 ms
9,728 KB
testcase_20 AC 59 ms
22,528 KB
testcase_21 AC 40 ms
16,256 KB
testcase_22 AC 26 ms
11,392 KB
testcase_23 AC 21 ms
9,728 KB
testcase_24 AC 60 ms
22,528 KB
testcase_25 AC 6 ms
5,248 KB
testcase_26 AC 40 ms
16,128 KB
testcase_27 AC 20 ms
9,728 KB
testcase_28 AC 43 ms
17,024 KB
testcase_29 AC 35 ms
14,592 KB
testcase_30 AC 41 ms
16,128 KB
testcase_31 AC 3 ms
5,248 KB
testcase_32 AC 70 ms
25,856 KB
testcase_33 AC 14 ms
7,808 KB
testcase_34 AC 60 ms
22,656 KB
testcase_35 AC 75 ms
27,440 KB
testcase_36 AC 60 ms
22,656 KB
testcase_37 AC 59 ms
22,652 KB
testcase_38 AC 40 ms
16,256 KB
testcase_39 AC 1 ms
5,248 KB
testcase_40 AC 2 ms
5,248 KB
testcase_41 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <queue>
#include <string>
using namespace std;

int main(){
    int n;cin>>n;
    
    int ans=0;
    for(int i=10;i<=min(100,n);i++){
        int a=i/10;
        int b=i%10;
        if((a+b)%3==0){
            ans++;
        }
    }
    if(n<=100){
        cout<<ans<<endl;
        return 0;
    }
    queue<string> q;
    q.push("3");
    q.push("6");
    q.push("9");

    while(q.size()){
        string s=q.front();q.pop();
        long long tmp=stoll(s);
        if(100<=tmp&&tmp<=n){
            ans++;
        }
        if(tmp>n){
            continue;
        }
        s+="0";
        q.push(s);
        s.pop_back();
        s+="3";
        q.push(s);
        s.pop_back();
        s+="6";
        q.push(s);
        s.pop_back();
        s+="9";
        q.push(s);
        s.pop_back();
    }

    cout<<ans<<endl;

    return 0;
}
0