結果

問題 No.1185 完全な3の倍数
ユーザー hiragnhiragn
提出日時 2020-08-24 03:11:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 504 bytes
コンパイル時間 1,896 ms
コンパイル使用メモリ 206,364 KB
実行使用メモリ 15,616 KB
最終ジャッジ日時 2024-11-24 09:35:25
合計ジャッジ時間 4,429 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
14,080 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 62 ms
13,440 KB
testcase_04 AC 77 ms
14,848 KB
testcase_05 AC 66 ms
14,208 KB
testcase_06 AC 63 ms
13,568 KB
testcase_07 AC 66 ms
13,312 KB
testcase_08 AC 75 ms
15,616 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 2 ms
6,820 KB
testcase_16 AC 2 ms
6,820 KB
testcase_17 AC 2 ms
6,820 KB
testcase_18 AC 2 ms
6,816 KB
testcase_19 AC 22 ms
6,820 KB
testcase_20 AC 59 ms
12,672 KB
testcase_21 AC 41 ms
9,600 KB
testcase_22 AC 25 ms
7,296 KB
testcase_23 AC 22 ms
6,820 KB
testcase_24 AC 55 ms
12,544 KB
testcase_25 AC 6 ms
6,820 KB
testcase_26 AC 40 ms
9,600 KB
testcase_27 AC 22 ms
6,816 KB
testcase_28 AC 42 ms
9,984 KB
testcase_29 AC 36 ms
8,960 KB
testcase_30 AC 41 ms
9,600 KB
testcase_31 AC 3 ms
6,816 KB
testcase_32 AC 67 ms
14,208 KB
testcase_33 AC 14 ms
6,820 KB
testcase_34 AC 56 ms
12,672 KB
testcase_35 AC 70 ms
14,848 KB
testcase_36 AC 61 ms
12,672 KB
testcase_37 AC 62 ms
12,672 KB
testcase_38 AC 41 ms
9,728 KB
testcase_39 AC 2 ms
6,820 KB
testcase_40 AC 2 ms
6,820 KB
testcase_41 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int n;
set<int> st;

void dfs(int i, int cur) {
    if (i == 10 or cur > n) return;
    if (cur > 100) st.insert(cur);
    dfs(i + 1, cur * 10);
    dfs(i + 1, cur * 10 + 3);
    dfs(i + 1, cur * 10 + 6);
    dfs(i + 1, cur * 10 + 9);
}

int main() {
    cin >> n;

    // 2桁の場合
    for (int i = 12; i < 100 and i <= n; i += 3) {
        st.insert(i);
    }

    // 3桁以上の場合
    dfs(0, 0);

    cout << st.size() << endl;
    return 0;
}
0