結果

問題 No.1185 完全な3の倍数
ユーザー ManjushriMitraManjushriMitra
提出日時 2024-12-08 18:29:40
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 1,224 bytes
コンパイル時間 2,796 ms
コンパイル使用メモリ 252,256 KB
実行使用メモリ 15,616 KB
最終ジャッジ日時 2024-12-08 18:29:46
合計ジャッジ時間 5,597 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
14,080 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 61 ms
13,312 KB
testcase_04 AC 71 ms
14,848 KB
testcase_05 AC 69 ms
14,208 KB
testcase_06 AC 62 ms
13,568 KB
testcase_07 AC 63 ms
13,440 KB
testcase_08 AC 75 ms
15,616 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 1 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 1 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 17 ms
6,528 KB
testcase_20 AC 56 ms
12,544 KB
testcase_21 AC 34 ms
9,472 KB
testcase_22 AC 19 ms
7,168 KB
testcase_23 AC 17 ms
6,528 KB
testcase_24 AC 54 ms
12,544 KB
testcase_25 AC 5 ms
5,248 KB
testcase_26 AC 33 ms
9,600 KB
testcase_27 AC 16 ms
6,400 KB
testcase_28 AC 36 ms
9,984 KB
testcase_29 AC 29 ms
8,832 KB
testcase_30 AC 34 ms
9,472 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 69 ms
14,080 KB
testcase_33 AC 12 ms
5,504 KB
testcase_34 AC 54 ms
12,672 KB
testcase_35 AC 69 ms
14,848 KB
testcase_36 AC 54 ms
12,544 KB
testcase_37 AC 55 ms
12,544 KB
testcase_38 AC 34 ms
9,472 KB
testcase_39 AC 2 ms
5,248 KB
testcase_40 AC 2 ms
5,248 KB
testcase_41 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i,m,n) for(int i=m; i<int(n); ++i)
#define repll(i,m,n) for(ll i=m; i<ll(n); ++i)
#define all(a) (a).begin(), (a).end()
#define rall(a) (a).rbegin(), (a).rend()
#define fi first
#define se second

template<typename T> bool chmin(T& a, T b){ if(a > b){a = b; return true;} return false; }
template<typename T> bool chmax(T& a, T b){ if(a < b){a = b; return true;} return false; }

template<typename T> T gcd(T a, T b){ return a % b ? gcd(b, a % b) : b; }
template<typename T> T lcm(T a, T b){ return a / gcd(a, b) * b; }

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    ll N;
    cin >> N;

    set<ll> st;
    for(ll i = 12LL; i <= min(100LL, N); i += 3LL){
        string s = to_string(i);
        if(((s[0] - '0') + (s[1] - '0')) % 3 == 0) st.insert(i);
    }

    auto rec = [&](auto rec, ll x) -> void {
        if(x > N) return;
        if(x >= 10LL) st.insert(x);

        if(x) rec(rec, x*10LL + 0LL);
        rec(rec, x*10LL + 3LL);
        rec(rec, x*10LL + 6LL);
        rec(rec, x*10LL + 9LL); 
    };
    rec(rec, 0LL);

    // for(ll s : st) cout << s << endl;
    cout << st.size() << endl;

    return 0;
}
0