码迷,mamicode.com
首页 > 其他好文 > 详细

杭电2085核反应堆

时间:2020-02-08 00:20:25      阅读:62      评论:0      收藏:0      [点我收藏+]

标签:http   int   input   php   while   class   void   java   str   

题目:http://acm.hdu.edu.cn/showproblem.php?pid=2085
import java.util.Scanner;

public class 核反应堆2085 {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
long[] gao = new long[35];//存高能质点数
long[] di = new long[35];//存低能质点数
gao[0] = 1;//0微秒时的射入的一个高能质点
gao[1] = 3;//第一微秒产生的高能质点
di[1] = 1;//第一微妙产生的低能质点
for (int i = 2;i <= 33;i++){
gao[i] = gao[i-1]*3+di[i-1]*2;//每微妙的高能质点数是上一秒高能质子数乘3加低能质子数乘2
di[i] = gao[i-1]+di[i-1];//没微妙的低能质子数等于上一微妙的高能质子数加低能质子数
}
while (input.hasNext()){
int n = input.nextInt();
if (n == -1){
break;
}
System.out.println(gao[n]+", "+di[n]);
}
}
}

杭电2085核反应堆

标签:http   int   input   php   while   class   void   java   str   

原文地址:https://www.cnblogs.com/ztabk/p/12275139.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!