結果

問題 No.1106 🦉 何事もバランスが大事
ユーザー shotoyooshotoyoo
提出日時 2021-06-17 23:47:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 226 ms / 2,000 ms
コード長 574 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 81,536 KB
最終ジャッジ日時 2024-06-11 17:28:51
合計ジャッジ時間 15,190 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
55,040 KB
testcase_01 AC 49 ms
54,656 KB
testcase_02 AC 48 ms
54,528 KB
testcase_03 AC 98 ms
62,080 KB
testcase_04 AC 175 ms
79,104 KB
testcase_05 AC 51 ms
55,040 KB
testcase_06 AC 47 ms
55,424 KB
testcase_07 AC 46 ms
54,912 KB
testcase_08 AC 48 ms
54,784 KB
testcase_09 AC 53 ms
60,672 KB
testcase_10 AC 53 ms
61,824 KB
testcase_11 AC 55 ms
62,848 KB
testcase_12 AC 102 ms
78,004 KB
testcase_13 AC 120 ms
78,336 KB
testcase_14 AC 108 ms
77,696 KB
testcase_15 AC 114 ms
77,492 KB
testcase_16 AC 111 ms
77,568 KB
testcase_17 AC 109 ms
77,484 KB
testcase_18 AC 113 ms
77,500 KB
testcase_19 AC 109 ms
77,696 KB
testcase_20 AC 134 ms
77,908 KB
testcase_21 AC 142 ms
79,624 KB
testcase_22 AC 108 ms
77,824 KB
testcase_23 AC 146 ms
78,976 KB
testcase_24 AC 164 ms
78,848 KB
testcase_25 AC 173 ms
79,464 KB
testcase_26 AC 189 ms
80,800 KB
testcase_27 AC 202 ms
80,128 KB
testcase_28 AC 173 ms
80,512 KB
testcase_29 AC 183 ms
79,152 KB
testcase_30 AC 185 ms
78,720 KB
testcase_31 AC 180 ms
79,448 KB
testcase_32 AC 193 ms
80,768 KB
testcase_33 AC 181 ms
79,136 KB
testcase_34 AC 193 ms
80,436 KB
testcase_35 AC 182 ms
78,916 KB
testcase_36 AC 204 ms
80,512 KB
testcase_37 AC 182 ms
79,232 KB
testcase_38 AC 214 ms
80,620 KB
testcase_39 AC 188 ms
80,896 KB
testcase_40 AC 179 ms
79,616 KB
testcase_41 AC 185 ms
79,864 KB
testcase_42 AC 181 ms
79,496 KB
testcase_43 AC 181 ms
80,252 KB
testcase_44 AC 173 ms
79,488 KB
testcase_45 AC 172 ms
79,624 KB
testcase_46 AC 185 ms
80,128 KB
testcase_47 AC 174 ms
79,232 KB
testcase_48 AC 187 ms
81,536 KB
testcase_49 AC 156 ms
79,088 KB
testcase_50 AC 115 ms
78,252 KB
testcase_51 AC 159 ms
79,368 KB
testcase_52 AC 166 ms
79,104 KB
testcase_53 AC 167 ms
79,268 KB
testcase_54 AC 189 ms
80,896 KB
testcase_55 AC 165 ms
79,432 KB
testcase_56 AC 186 ms
80,256 KB
testcase_57 AC 185 ms
80,256 KB
testcase_58 AC 184 ms
80,104 KB
testcase_59 AC 186 ms
80,896 KB
testcase_60 AC 156 ms
78,960 KB
testcase_61 AC 198 ms
79,492 KB
testcase_62 AC 111 ms
77,952 KB
testcase_63 AC 162 ms
79,616 KB
testcase_64 AC 197 ms
80,924 KB
testcase_65 AC 134 ms
78,940 KB
testcase_66 AC 164 ms
78,848 KB
testcase_67 AC 226 ms
80,528 KB
testcase_68 AC 172 ms
79,104 KB
testcase_69 AC 176 ms
79,360 KB
testcase_70 AC 200 ms
80,380 KB
testcase_71 AC 193 ms
80,384 KB
testcase_72 AC 171 ms
79,104 KB
testcase_73 AC 171 ms
79,232 KB
testcase_74 AC 167 ms
80,120 KB
testcase_75 AC 172 ms
79,104 KB
testcase_76 AC 165 ms
79,104 KB
testcase_77 AC 164 ms
79,196 KB
testcase_78 AC 172 ms
79,252 KB
testcase_79 AC 177 ms
79,360 KB
testcase_80 AC 173 ms
79,360 KB
testcase_81 AC 174 ms
79,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")
debug = lambda x: sys.stderr.write(x+"\n")
writef = lambda x: print("{:.12f}".format(x))


n = int(input())
from functools import lru_cache
@lru_cache(1<<20)
def sub(n,v,ok):
    if n<0:
        ans = 0
    elif n==0 and v==0 and ok:
        ans = 1
    elif n==0:
        ans = 0
    else:
        ans = sum((sub((n+i)//5, v+i, i<0 or (i==0 and ok)) for i in range(-2, 3)))
#     print(n,v,ans)
    return ans
ans = sub(n,0,0)
print(ans)
0