- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
需要找到满足给定整数 N 的最小数 P
sum of f(x)>=N. where f(x)=f(1)+f(2)+.....+f(p) where f(a) is number of times a number and then its quotient is divisible by 5 for example 100 is divisible by 5 two times as 100/5=20 and 20/5=4 but 4 is not divisible so f(100)=2
其中函数定义为数字与其商可以除以 5 的次数。例如对于 N=6 P 将是 25 因为 1,2,3,4,6,7,8,9,11,12,13,14,16,17,18,19,21,22,23,24不能被 5 整除并且 5 只能被 1 整除所以
f(5)=1,and same
f(10)=1,
f(15)=1,
f(20)=1
(20/5=4 but 4 is not divisible by 5) but 25 is divisible by 5
自从两次 25/5=5 和 5/5 =1) 所以 f(25)=2 所以 f(x)=f(1)+f(2)+.....f(25)=6
这是答案,所以最小的 P 应该是 25。这是我的代码,但在某些情况下我遇到了问题。
def myround(x, base=5):
return ((base * round((x)/base)))
n=int(input())
count=0
i=5
while(n/i>=1):
count+=1
i=i*5
res=count+1
counter=0
for j in range(1,res+1):
gcd_cal=((1/5)**j)
counter+=gcd_cal
end_res=(n/counter)
zz=(myround(end_res))
reverse=zz-5
re=zz+5
counter1=0
for xx in range(1,res+1):
div=int(5**xx)
temp=(zz//div)
counter1+=temp
counter2=0
for xx in range(1,res+1):
div=int(5**xx)
temp=(reverse//div)
counter2+=temp
counter3=0
for xx in range(1,res+1):
div=int(5**xx)
temp=(re//div)
counter3+=temp
if (counter1==n):
print(zz)
elif(counter2==n):
print(reverse)
elif(counter3==n):
print(re)
else:
print(max(zz,reverse,re))
注意:递归解决方案对于大 N 来说太慢了,比如 10**9
PS:我想知道需要多少个数字才能使返回值等于整数 N 比如说(例如 6)
编辑:DP解决这个问题可以
dict={}
def fa(x):
if x in dict:
return dict[x]
if not x%5 and x%25 and x>0:
dict[x]=1
return 1
elif not x%5 and not x%25 and x>0:
dict[x]=1+fa(x//5)
return 1+fa(x//5)
else:
return 0
def F(N):
counter=0
s=0
while s<N:
counter+=5
s+=fa(counter)
return counter
for _ in range(int(input())):
n=int(input())
print(F(n))
最佳答案
这是一个具有常量存储并按 log(x) 次序运行的函数。我认为更小的存储或运行时间顺序是不可能的。
关键思想是将 x
视为类似于基数 5 的数字。找到数字 n
的 base-5 表示的一种方法是找到超过 n
的 5 的第一个幂,然后继续减少 5 的幂并找到多少这些符合数字 n
。我的例程与此类似,但删除的是 5 的指数和而不是 5 的幂。由于简单的递推关系,求 n 的指数和很容易增加 5 的幂。可能有一种直接的方法可以找到所需的 5 的幂,但是我的函数的后半部分比那慢,所以优化我的函数的前半部分不会有太大的改进。
我已经针对 x
高达 10,000
的值测试了此例程,并且它进行了检查。它非常快,超过 x=10**100
,尽管检查这些结果非常慢。请注意,我更喜欢将参数 n
用作整数值,而不是您的 x
。
如果您需要更多解释,请告诉我。
def smallestsumexp5s(n):
"""Return the smallest integer whose sum of the exponents of 5 in
the prime decomposition of i for 1 <= i <= n is greater than or
equal to n.
"""
# Find the power of 5 whose sum passes n
powerof5 = 5
sumofexpsof5 = 1
while sumofexpsof5 <= n:
powerof5 *= 5
sumofexpsof5 = sumofexpsof5 * 5 + 1
# Cut off pieces of the target to find the desired integer
remains = n
result = 0
while remains > 0:
# Back off to the previous power of 5
powerof5 //= 5
sumofexpsof5 //= 5
# Cut off pieces of the remaining number
q, remains = divmod(remains, sumofexpsof5)
# Adjust the accumulated result
result += q * powerof5
return result
关于python - 需要多少个数字才能使返回值等于整数 N?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47609324/
fiddle :http://jsfiddle.net/rtucgv74/ 我正在尝试将第一个字符与 3 位数字匹配。所以下面的代码应该提醒f234。但反而返回 null ? 源代码: var reg
复制代码 代码如下: Dim strOk,strNo strOk = "12312321$12
我想找 {a number} / { a number } / {a string}模式。我可以得到number / number工作,但是当我添加 / string它不是。 我试图找到的例子: 15
我,我正在做一个模式正则表达式来检查字符串是否是: 数字.数字.数字,如下所示: 1.1.1 0.20.2 58.55541.5221 在java中我使用这个: private static Patt
我有一个字符串,我需要检查它是否在字符串的末尾包含一个数字/数字,并且需要将该数字/数字递增到字符串末尾 +1 我会得到下面的字符串 string2 = suppose_name_1 string3
我正在寻找一个正则表达式 (数字/数字),如(1/2) 数字必须是 1-3 位数字。我使用 Java。 我认为我的问题比正则表达式更深。我无法让这个工作 String s ="(1/15)";
谁能帮我理解为什么我在使用以下代码时会出现类型错误: function sumOfTwoNumbersInArray(a: [number, number]) { return a[0] +
我看到有些人过去也遇到过类似的问题,但他们似乎只是不同,所以解决方案也有所不同。所以这里是: 我正在尝试在 Google Apps 脚本中返回工作表的已知尺寸范围,如下所示: var myRange
我试图了解python中的正则表达式模块。我试图让我的程序从用户输入的一行文本中匹配以下模式: 8-13 之间的数字“/” 0-15 之间的数字 例如:8/2、11/13、10/9 等。 我想出的模式
简单地说,我当前正在开发的程序要求我拆分扫描仪输入(例如:2 个火腿和奶酪 5.5)。它应该读取杂货订单并将其分成三个数组。我应该使用 string.split 并能够将此输入分成三部分,而不管中间字
(number) & (-number) 是什么意思?我已经搜索过了,但无法找到含义 我想在 for 循环中使用 i & (-i),例如: for (i = 0; i 110000 .对于i没有高于
需要将图像ID设置为数字 var number = $(this).attr('rel'); number = parseInt(number); $('#carousel .slid
我有一个函数,我想确保它接受一个字符串,后跟一个数字。并且可选地,更多的字符串数字对。就像一个元组,但“无限”次: const fn = (...args: [string, number] | [s
我想复制“可用”输入数字的更改并将其添加或减去到“总计”中 如果此人将“可用”更改为“3”,则“总计”将变为“9”。 如果用户将“可用”更改为“5”,则“总计”将变为“11”。 $('#id1').b
我有一个与 R 中的断线相关的简单问题。 我正在尝试粘贴,但在获取(字符/数字)之间的断线时遇到问题。请注意,这些值包含在向量中(V1=81,V2=55,V3=25)我已经尝试过这段代码: cat(p
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
我在 Typescript 中收到以下错误: Argument of type 'number[]' is not assignable to parameter of type 'number' 我
在本教程中,您将通过示例了解JavaScript 数字。 在JavaScript中,数字是基本数据类型。例如, const a = 3; const b = 3.13; 与其他一些编程语言不同
我在 MDN Reintroduction to JavaScript 上阅读JavaScript 数字只是浮点精度类型,JavaScript 中没有整数。然而 JavaScript 有两个函数,pa
我们在 Excel 中管理库存。我知道这有点过时,但我们正在发展商业公司,我们所有的钱都被困在业务上,没有钱投资 IT。 所以我想知道我可以用Excel自动完成产品编号的方式进行编程吗? 这是一个产品
我是一名优秀的程序员,十分优秀!