結果
| 問題 |
No.1185 完全な3の倍数
|
| コンテスト | |
| ユーザー |
rinrinta121
|
| 提出日時 | 2020-08-25 23:44:23 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 4 ms / 2,000 ms |
| コード長 | 772 bytes |
| コンパイル時間 | 1,595 ms |
| コンパイル使用メモリ | 167,816 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-11-24 09:49:45 |
| 合計ジャッジ時間 | 2,680 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 39 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define all(x) (x).begin(),(x).end()
typedef long long ll;
typedef pair<ll, ll> P;
const int mod = 1000000007; //出力は (ans % mod + mod) % mod (負の剰余を正にする)
const int inf = 1e9;
const long long INF = 1LL << 60; // INF = 11
ll l[4] = {0,3,6,9};
ll ans = 0;
void dfs(ll tmp,ll lim){
//cout << tmp << endl;
if(tmp <= lim){
if(tmp >= 100) ans++;
for(int i = 0; i < 4; i++){
dfs(tmp * 10 + l[i],lim);
}
}
}
int main()
{
ll n; cin >> n;
if(n <= 100){
cout << n/3 - 3 << endl;
}else{
dfs(3,n);
dfs(6,n);
dfs(9,n);
cout << 30 + ans << endl;
}
}
rinrinta121