题解 | #[NOIP2015]金币#

[NOIP2015]金币

https://www.nowcoder.com/practice/8f71f5670e6a45118d24d13868a2da9e

import java.util.Scanner;
public class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int k =in.nextInt();//第几天
        int sum=0;//金币数
        int t = 1;//当前金币数第几天
        int s = 1;//当前金币数
        for(int i=1;i<=k;i++){
            sum+=s;
            if(t==s){
                t=1;
                s++;
            }else{
                t++;
            }
        }
       System.out.print(sum);
    }
}

全部评论

相关推荐

听说改名字就能收到offer哈:Radis写错了兄弟
点赞 评论 收藏
分享
11-09 11:01
济南大学 Java
Java抽象带篮子:外卖项目真得美化一下,可以看看我的详细的外卖话术帖子
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务