给定一个正整数n,求。式子中[x]为下取整。 答案可能会很大,输出答案对998244353取模后的值。
示例1
输入
5
输出
10
示例2
输入
10
输出
27
备注:
1
加载中...
import java.util.*; public class Solution { /** * * @param n long长整型 * @return int整型 */ public int work (long n) { // write code here } }
class Solution { public: /** * * @param n long长整型 * @return int整型 */ int work(long long n) { // write code here } };
# # # @param n long长整型 # @return int整型 # class Solution: def work(self , n ): # write code here
/** * * @param n long长整型 * @return int整型 */ function work( n ) { // write code here } module.exports = { work : work };
# # # @param n long长整型 # @return int整型 # class Solution: def work(self , n ): # write code here
package main /** * * @param n long长整型 * @return int整型 */ func work( n int64 ) int { // write code here }
/** * * @param n long长整型 * @return int整型 */ int work(long long n ) { // write code here }
5
10
10
27