結果

問題 No.639 An Ordinary Sequence
ユーザー brthyyjpbrthyyjp
提出日時 2020-10-28 04:35:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 1,000 ms
コード長 192 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 87,112 KB
実行使用メモリ 71,640 KB
最終ジャッジ日時 2023-09-29 03:32:45
合計ジャッジ時間 3,408 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
71,340 KB
testcase_01 AC 73 ms
71,624 KB
testcase_02 AC 71 ms
71,484 KB
testcase_03 AC 70 ms
71,440 KB
testcase_04 AC 72 ms
71,252 KB
testcase_05 AC 71 ms
71,252 KB
testcase_06 AC 72 ms
71,428 KB
testcase_07 AC 71 ms
71,640 KB
testcase_08 AC 71 ms
71,504 KB
testcase_09 AC 71 ms
71,412 KB
testcase_10 AC 72 ms
71,244 KB
testcase_11 AC 71 ms
71,552 KB
testcase_12 AC 73 ms
71,460 KB
testcase_13 AC 72 ms
71,116 KB
testcase_14 AC 74 ms
71,132 KB
testcase_15 AC 76 ms
71,444 KB
testcase_16 AC 72 ms
71,260 KB
testcase_17 AC 72 ms
71,440 KB
testcase_18 AC 70 ms
71,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

memo = {}
def dfs(n):
    if n == 0:
        return 1
    if n in memo:
        return memo[n]
    res = dfs(n//3)+dfs(n//5)
    memo[n] = res
    return res

print(dfs(n)) 
0