标签:sts 输出 number lin void int task return orm
4 20 0 25 -155 27 190 30 240 2 21 0 22 34 0
780 771
代码:
#include<iostream> #include<stdio.h> #include<string.h> #include <stdlib.h> #include<vector> #include<queue> #include<math.h> using namespace std; int main() { int n; int v,t; while((cin>>n)&&(n!=0)) { double time; double min = 0x7fffffff; for(int i=1;i<=n;i++) { cin>>v>>t; if(t < 0) continue; time=t+(4.5/double(v))*3600;//计算每个同学的时间 if(time<min)//取时间最短的那个 { min=time; } } cout<<ceil(min)<<endl;//ceil向上取 } return 0; }
标签:sts 输出 number lin void int task return orm
原文地址:http://www.cnblogs.com/gcter/p/7390854.html