結果

問題 No.639 An Ordinary Sequence
ユーザー alexara1123alexara1123
提出日時 2019-07-09 00:02:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 1,000 ms
コード長 282 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 62,472 KB
最終ジャッジ日時 2024-06-10 13:08:14
合計ジャッジ時間 1,630 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
59,488 KB
testcase_01 AC 43 ms
61,076 KB
testcase_02 AC 36 ms
53,964 KB
testcase_03 AC 37 ms
55,008 KB
testcase_04 AC 36 ms
53,504 KB
testcase_05 AC 36 ms
54,092 KB
testcase_06 AC 36 ms
54,184 KB
testcase_07 AC 37 ms
54,692 KB
testcase_08 AC 37 ms
55,100 KB
testcase_09 AC 38 ms
54,988 KB
testcase_10 AC 37 ms
54,468 KB
testcase_11 AC 36 ms
54,440 KB
testcase_12 AC 39 ms
54,396 KB
testcase_13 AC 38 ms
55,340 KB
testcase_14 AC 38 ms
54,924 KB
testcase_15 AC 41 ms
59,708 KB
testcase_16 AC 47 ms
62,472 KB
testcase_17 AC 37 ms
55,308 KB
testcase_18 AC 43 ms
60,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

from collections import defaultdict

memo = defaultdict(int)
def r(n):

    if n == 0:
        return 1
    elif memo[n] != 0 :
        return memo[n]
    else:
        memo[n//3] = r(n//3)
        memo[n//5] = r(n//5)
        return r(n//3) + r(n//5)
print(r(N))
0