結果

問題 No.1185 完全な3の倍数
ユーザー mmn15277198mmn15277198
提出日時 2021-07-11 16:47:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 808 bytes
コンパイル時間 1,044 ms
コンパイル使用メモリ 104,220 KB
実行使用メモリ 23,936 KB
最終ジャッジ日時 2024-07-02 03:07:41
合計ジャッジ時間 4,285 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
21,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 102 ms
20,096 KB
testcase_04 AC 115 ms
22,656 KB
testcase_05 AC 110 ms
21,376 KB
testcase_06 AC 101 ms
20,480 KB
testcase_07 AC 103 ms
20,096 KB
testcase_08 AC 133 ms
23,936 KB
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 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 35 ms
8,576 KB
testcase_20 AC 94 ms
18,688 KB
testcase_21 AC 63 ms
13,696 KB
testcase_22 AC 42 ms
9,856 KB
testcase_23 AC 34 ms
8,576 KB
testcase_24 AC 92 ms
18,816 KB
testcase_25 AC 9 ms
5,376 KB
testcase_26 AC 63 ms
13,696 KB
testcase_27 AC 33 ms
8,704 KB
testcase_28 AC 66 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 107 ms
21,376 KB
testcase_33 AC 22 ms
7,040 KB
testcase_34 AC 94 ms
18,816 KB
testcase_35 AC 116 ms
22,656 KB
testcase_36 AC 94 ms
18,816 KB
testcase_37 AC 93 ms
18,816 KB
testcase_38 AC 63 ms
13,696 KB
testcase_39 AC 2 ms
5,376 KB
testcase_40 AC 2 ms
5,376 KB
testcase_41 AC 2 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;
long long n;
int d;

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

  long long now = 0;
  for (int i = 0; i < s.size(); i++) {
    now *= 10LL;
    now += s[i] - '0';
  }
  
  if (now > 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(99LL , n); i += 3) {
    mp[to_string(i)]++;
  }

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

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

  return 0;
}
0