結果

問題 No.1185 完全な3の倍数
ユーザー samagaisamagai
提出日時 2020-09-06 18:05:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,472 bytes
コンパイル時間 1,136 ms
コンパイル使用メモリ 102,784 KB
実行使用メモリ 13,888 KB
最終ジャッジ日時 2024-05-06 21:20:07
合計ジャッジ時間 5,046 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
10,404 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 5 ms
5,376 KB
testcase_04 AC 5 ms
5,376 KB
testcase_05 AC 4 ms
5,376 KB
testcase_06 AC 4 ms
5,376 KB
testcase_07 AC 5 ms
5,376 KB
testcase_08 TLE -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <iomanip>
#include <string>
#include <vector>
#include <algorithm>
#include <map>
#include <cmath>
#include <queue>
#include <set>
#include <cassert>
#include <random>

#define rep(i, n) for (int i = 0; i < (n); i++)

using namespace std;
typedef long long int ll;
const ll INF = 10000000000;
const double PI = acos(-1);
const ll mod = 998244353;

int n = 0;
int d = 0;
int cnt = 0;

// 整数nの桁数を計算する関数
int CalcDigit(int num) {
    int digit = 0;
    while (num != 0) {
        num /= 10;
        digit++;
    }
    return digit;
}

void dfs(int num) {
    if (CalcDigit(num) == d) {
        if (num <= n) cnt++;
        return;
    }
    int arr[4] = { 0,3,6,9 };
    rep(i, 4) {
        dfs(num * 10 + arr[i]);
    }
    return;
}

int main()
{
    cin >> n;

    d = CalcDigit(n);
    cnt = 0;
    // 2ケタの場合、数え上げ
    if (d <= 2) {
        for (int i = 10; i <= n; i++) {
            int a = i / 10;
            int b = i % 10;
            if (i % 3 == 0 && (a + b) % 3 == 0) {
                cnt++;
            }
        }
        cout << cnt << endl;
        return 0;
    }

    // 2ケタでない場合、まず、1つ下のケタまでを求める
    cnt += 30;  // 2ケタの完全な3の倍数の数
    for (int i = 3; i < d; i++) {
        cnt += pow(4, i - 1) * 3;
    }

    int arr[3] = { 3, 6, 9 };
    rep(i, 3) {
        dfs(arr[i]);
    }
    cout << cnt << endl;
    return 0;
}
0