NC247477. 233的字符串
描述
输入描述
一个正整数
输出描述
"acb"子序列的数量。答案对取模。
示例1
输入:
3
输出:
4
说明:
pypy3 解法, 执行用时: 84ms, 内存消耗: 53904K, 提交时间: 2022-12-13 19:06:53
n=int(input()) print(((n**3-n)//6)%(10**9+7))
Python3 解法, 执行用时: 42ms, 内存消耗: 4520K, 提交时间: 2023-01-27 22:05:40
a=int(input()) print((a*a*a-a)//6%1000000007)