Problem 721 题目发布于 2020-06-21 翻译更新于 2020-12-19 Problem 721 High powers of irrational numbersGiven is the function f(a,n)=⌊(⌈a:⌉+a:)n⌋.⌊.⌋ denotes the floor function and ⌈.⌉ denotes the ceiling function.f(5,2)=27 and f(5,5)=3935. G(n)=∑a=1nf(a,a2).G(1000)mod999 999 937=163861845.Find G(5 000 000). Give your answer modulo 999 999 937. 无理数的高次幂考虑函数f(a,n)=⌊(⌈a:⌉+a:)n⌋,其中⌊.⌋代表下取整函数,⌈.⌉代表上取整函数。已知f(5,2)=27,f(5,5)=3935。 记G(n)=∑a=1nf(a,a2)。已知G(1000)mod999 999 937=163861845。求G(5 000 000),并将你的答案对999 999 937取余。
Gitalking ...