結果

問題 No.1185 完全な3の倍数
ユーザー sakaki_tohrusakaki_tohru
提出日時 2020-08-22 13:33:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 893 bytes
コンパイル時間 761 ms
コンパイル使用メモリ 85,040 KB
実行使用メモリ 29,068 KB
最終ジャッジ日時 2024-05-03 10:15:32
合計ジャッジ時間 3,082 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
25,600 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 67 ms
24,192 KB
testcase_04 AC 75 ms
27,316 KB
testcase_05 AC 72 ms
25,728 KB
testcase_06 AC 67 ms
24,704 KB
testcase_07 AC 65 ms
24,192 KB
testcase_08 AC 80 ms
29,068 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 1 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 1 ms
6,940 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 21 ms
9,728 KB
testcase_20 AC 60 ms
22,656 KB
testcase_21 AC 40 ms
16,128 KB
testcase_22 AC 25 ms
11,264 KB
testcase_23 AC 19 ms
9,728 KB
testcase_24 AC 59 ms
22,528 KB
testcase_25 AC 6 ms
6,944 KB
testcase_26 AC 40 ms
16,128 KB
testcase_27 AC 21 ms
9,728 KB
testcase_28 AC 42 ms
16,892 KB
testcase_29 AC 36 ms
14,464 KB
testcase_30 AC 41 ms
16,128 KB
testcase_31 AC 3 ms
6,940 KB
testcase_32 AC 70 ms
25,852 KB
testcase_33 AC 14 ms
7,808 KB
testcase_34 AC 61 ms
22,528 KB
testcase_35 AC 76 ms
27,440 KB
testcase_36 AC 59 ms
22,528 KB
testcase_37 AC 65 ms
22,528 KB
testcase_38 AC 39 ms
16,128 KB
testcase_39 AC 1 ms
6,940 KB
testcase_40 AC 2 ms
6,940 KB
testcase_41 AC 2 ms
6,944 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