結果

問題 No.639 An Ordinary Sequence
ユーザー R ITSUMIR ITSUMI
提出日時 2020-06-23 00:57:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 1,000 ms
コード長 199 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 55,552 KB
最終ジャッジ日時 2024-07-03 19:03:40
合計ジャッジ時間 1,829 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,928 KB
testcase_01 AC 41 ms
54,876 KB
testcase_02 AC 39 ms
54,368 KB
testcase_03 AC 39 ms
53,760 KB
testcase_04 AC 39 ms
53,284 KB
testcase_05 AC 39 ms
55,552 KB
testcase_06 AC 39 ms
53,792 KB
testcase_07 AC 40 ms
53,728 KB
testcase_08 AC 41 ms
54,180 KB
testcase_09 AC 40 ms
54,224 KB
testcase_10 AC 39 ms
54,924 KB
testcase_11 AC 39 ms
54,440 KB
testcase_12 AC 39 ms
55,464 KB
testcase_13 AC 39 ms
54,332 KB
testcase_14 AC 42 ms
54,216 KB
testcase_15 AC 41 ms
53,880 KB
testcase_16 AC 41 ms
54,492 KB
testcase_17 AC 39 ms
53,648 KB
testcase_18 AC 39 ms
54,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
memo = defaultdict(int)
memo[0] = 1
def f(n):
    if memo[n] != 0:
        return memo[n]
    memo[n] = f(n//3) + f(n//5)
    return memo[n]
print(f(int(input())))
0