結果

問題 No.1185 完全な3の倍数
ユーザー mmn15277198mmn15277198
提出日時 2021-07-11 16:40:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 699 bytes
コンパイル時間 1,251 ms
コンパイル使用メモリ 105,472 KB
実行使用メモリ 22,656 KB
最終ジャッジ日時 2024-07-02 03:07:17
合計ジャッジ時間 4,238 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
21,120 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 99 ms
20,096 KB
testcase_04 AC 115 ms
22,656 KB
testcase_05 AC 107 ms
21,376 KB
testcase_06 AC 103 ms
20,480 KB
testcase_07 AC 97 ms
20,096 KB
testcase_08 RE -
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 37 ms
8,448 KB
testcase_20 AC 92 ms
18,816 KB
testcase_21 AC 65 ms
13,696 KB
testcase_22 AC 44 ms
9,856 KB
testcase_23 AC 36 ms
8,448 KB
testcase_24 AC 91 ms
18,944 KB
testcase_25 AC 10 ms
5,376 KB
testcase_26 AC 68 ms
13,696 KB
testcase_27 AC 37 ms
8,576 KB
testcase_28 AC 69 ms
14,336 KB
testcase_29 AC 57 ms
12,416 KB
testcase_30 AC 63 ms
13,696 KB
testcase_31 AC 3 ms
5,376 KB
testcase_32 AC 109 ms
21,376 KB
testcase_33 AC 22 ms
7,040 KB
testcase_34 AC 97 ms
18,944 KB
testcase_35 AC 111 ms
22,656 KB
testcase_36 AC 93 ms
18,688 KB
testcase_37 AC 93 ms
18,816 KB
testcase_38 AC 66 ms
13,824 KB
testcase_39 AC 2 ms
5,376 KB
testcase_40 AC 2 ms
5,376 KB
testcase_41 AC 3 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <functional>
#include <queue>
#include <map>
#include <cmath>
#include <iomanip>

using namespace std;

const long long MOD = (long long)(1e9) + 7;

map<string , int> mp;
int n , d;

void dfs(string s) {
  if (s.size() > d) {
    return;
  }

  if ((int)stoi(s) > n) {
    return;
  }

  mp[s]++;
  dfs(s + "3");
  dfs(s + "6");
  dfs(s + "9");
  dfs(s + "0");

  return;
}

int main() {

  //cout << fixed << setprecision(15);

  cin >> n;
  d = to_string(n).size();
  
  for (int i = 12; i <= min(99 , n); i += 3) {
    mp[to_string(i)]++;
  }

  dfs("3");
  dfs("6");
  dfs("9");

  cout << mp.size() - 3 << endl;

  return 0;
}
0