/ neko /

记录详情

Accepted


  
# 状态 耗时 内存占用
#1 Accepted 89ms 9.473 MiB
#2 Accepted 88ms 9.316 MiB
#3 Accepted 88ms 9.164 MiB
#4 Accepted 87ms 9.156 MiB
#5 Accepted 87ms 9.23 MiB
#6 Accepted 87ms 9.168 MiB
#7 Accepted 87ms 9.16 MiB
#8 Accepted 86ms 9.148 MiB
#9 Accepted 87ms 9.156 MiB
#10 Accepted 87ms 9.168 MiB

代码

import java.util.*;
public class Main {
  public int Moneycount(int k){
        int ans=0;
        int temp=0;
        int i;
        for ( i=0;i<k;i+=++temp){
            ans+=(temp*temp);

        }
        ans+=((k-i+temp)*temp);
        return ans;
    }

    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int k = in.nextInt();
        Main k1=new Main();
        System.out.println(k1.Moneycount(k));

    }

}

信息

递交者
类型
递交
题目
P1013 金币
比赛
暑假摸鱼第四弹
题目数据
下载
语言
Java
递交时间
2021-02-16 15:46:46
评测时间
2021-02-16 15:46:46
评测机
分数
100
总耗时
877ms
峰值内存
9.473 MiB