众所周知,金字塔是一层一层堆砌而成。 如下图,金字塔的最顶层有一个点,第二层有三个点,第三层有六个点,以此类推…… 有一个无限大的金字塔,前 层一共有多少个点?答案请对 取模。 数据范围:
示例1
输入
4
输出
20
说明
前四层的点数量为 1 + 3 + 6 +10 = 20
加载中...
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param n int整型 金字塔的层数 * @return int整型 */ public int getNums (int n) { // write code here } }
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param n int整型 金字塔的层数 * @return int整型 */ int getNums(int n) { // write code here } };
#coding:utf-8 # # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param n int整型 金字塔的层数 # @return int整型 # class Solution: def getNums(self , n ): # write code here
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param n int整型 金字塔的层数 * @return int整型 */ public int getNums (int n) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param n int整型 金字塔的层数 * @return int整型 */ function getNums( n ) { // write code here } module.exports = { getNums : getNums };
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param n int整型 金字塔的层数 # @return int整型 # class Solution: def getNums(self , n: int) -> int: # write code here
package main //import "fmt" /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param n int整型 金字塔的层数 * @return int整型 */ func getNums( n int ) int { // write code here }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param n int整型 金字塔的层数 * @return int整型 */ int getNums(int n ) { // write code here }
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param n int整型 金字塔的层数 # @return int整型 # class Solution def getNums(n) # write code here end end
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param n int整型 金字塔的层数 * @return int整型 */ def getNums(n: Int): Int = { // write code here } }
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param n int整型 金字塔的层数 * @return int整型 */ fun getNums(n: Int): Int { // write code here } }
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param n int整型 金字塔的层数 * @return int整型 */ public int getNums (int n) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param n int整型 金字塔的层数 * @return int整型 */ export function getNums(n: number): number { // write code here }
public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param n int整型 金字塔的层数 * @return int整型 */ func getNums ( _ n: Int) -> Int { // write code here } }
struct Solution{ } impl Solution { fn new() -> Self { Solution{} } /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param n int整型 金字塔的层数 * @return int整型 */ pub fn getNums(&self, n: i32) -> i32 { // write code here } }
4
20