結果

問題 No.639 An Ordinary Sequence
ユーザー @abcde@abcde
提出日時 2020-03-13 22:04:34
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 11 ms / 1,000 ms
コード長 584 bytes
コンパイル時間 1,349 ms
コンパイル使用メモリ 167,956 KB
実行使用メモリ 11,544 KB
最終ジャッジ日時 2024-06-10 13:11:56
合計ジャッジ時間 2,116 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
11,372 KB
testcase_01 AC 11 ms
11,384 KB
testcase_02 AC 6 ms
11,536 KB
testcase_03 AC 6 ms
11,520 KB
testcase_04 AC 5 ms
11,368 KB
testcase_05 AC 5 ms
11,436 KB
testcase_06 AC 5 ms
11,540 KB
testcase_07 AC 5 ms
11,524 KB
testcase_08 AC 4 ms
11,496 KB
testcase_09 AC 4 ms
11,472 KB
testcase_10 AC 4 ms
11,512 KB
testcase_11 AC 5 ms
11,500 KB
testcase_12 AC 5 ms
11,452 KB
testcase_13 AC 6 ms
11,544 KB
testcase_14 AC 5 ms
11,428 KB
testcase_15 AC 7 ms
11,400 KB
testcase_16 AC 9 ms
11,412 KB
testcase_17 AC 4 ms
11,504 KB
testcase_18 AC 10 ms
11,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// ※※※ 解答不能 ※※※
// https://yukicoder.me/submissions/197554
#include <bits/stdc++.h>
using namespace std;
using LL = long long;
#define repex(i, a, b, c) for(int i = a; i < b; i += c)
#define repx(i, a, b) repex(i, a, b, 1)
#define rep(i, n) repx(i, 0, n)
#define repr(i, a, b) for(int i = a; i >= b; i--)

LL n, a[1000009];
LL solve(LL x){
    if(x <= 1000000) return a[x];
    return solve(x / 3) + solve(x / 5);
}
int main(){
    a[0] = 1;
    repx(i, 1, 1000001) a[i] = a[i / 3] + a[i / 5];
    scanf("%lld", &n);
    printf("%lld\n", solve(n));
    return 0;
}
0