結果

問題 No.1185 完全な3の倍数
ユーザー f843nmfwisfeuwf843nmfwisfeuw
提出日時 2020-08-30 11:33:35
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,283 bytes
コンパイル時間 960 ms
コンパイル使用メモリ 98,080 KB
実行使用メモリ 17,864 KB
最終ジャッジ日時 2024-11-14 18:14:59
合計ジャッジ時間 68,528 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <cmath>
#include <iomanip>
#include <stack>
#include <algorithm>
#include <string>
#include <map>
#include <iterator>
#include <set>
#include <queue>
#include <bitset>
#include <cassert>

using namespace std;

vector<int> ps = {0, 3, 6, 9};

int m(int x, int k) {
    if (x > k) {
        return 0;
    }
    
    int cnt = 1;
    for (int i = 0; i < 4; ++i) {
        cnt += m(x * 10 + ps[i], k);
    }
    return cnt;
}

int main() {

    vector<int> xs;
    for (int i = 10; i < 100; ++i) {
        if (i % 3 == 0 and ((i / 10) + (i % 10)) % 3 == 0) {
            xs.push_back(i);
        }
    }

    int N;
    cin >> N;

    if (N < 100) {
        int cnt = 0;
        for (int i = 0; i < xs.size(); ++i) {
            if (xs[i] <= N) {
                cnt += 1;
            }
        }
        cout << cnt << endl;
    } else {

        int cnt = xs.size();
        vector<int> ys;
        for (int i = 0; i < xs.size(); ++i) {
            if ((xs[i] % 10) % 3 == 0 and (xs[i] / 10) % 3 == 0) {
                ys.push_back(xs[i]);
            }
        }
        cnt -= ys.size();
        for (int i = 0; i < ys.size(); ++i) {
            cnt += m(ys[i], N);
        }

        cout << cnt << endl;
    }

}
0