結果
| 問題 |
No.639 An Ordinary Sequence
|
| コンテスト | |
| ユーザー |
merom686
|
| 提出日時 | 2018-01-27 01:07:34 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 1,000 ms |
| コード長 | 425 bytes |
| コンパイル時間 | 773 ms |
| コンパイル使用メモリ | 86,484 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2025-01-02 02:11:36 |
| 合計ジャッジ時間 | 1,473 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 17 |
ソースコード
#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <unordered_map>
#include <cstdio>
#include <cstring>
#include <cmath>
using namespace std;
unordered_map<int64_t, int64_t> mp;
int64_t dfs(int64_t i) {
if (mp.count(i)) return mp[i];
return mp[i] = dfs(i / 3) + dfs(i / 5);
}
int main() {
int64_t n;
cin >> n;
mp[0] = 1;
cout << dfs(n) << endl;
return 0;
}
merom686