結果
| 問題 | No.639 An Ordinary Sequence |
| コンテスト | |
| ユーザー |
kyuna
|
| 提出日時 | 2019-07-31 13:21:32 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 1,000 ms |
| コード長 | 334 bytes |
| 記録 | |
| コンパイル時間 | 607 ms |
| コンパイル使用メモリ | 76,928 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2025-01-02 02:46:08 |
| 合計ジャッジ時間 | 1,318 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 17 |
ソースコード
#include <algorithm>
#include <iostream>
#include <vector>
#include <map>
using namespace std;
using ll = long long;
map<ll, ll> memo;
ll f(ll x) {
if (x == 0) return 1;
if (memo.count(x)) return memo[x];
return memo[x] = f(x / 3) + f(x / 5);
}
int main() {
ll n; cin >> n;
cout << f(n) << endl;
return 0;
}
kyuna