#11824: 為何TLE?


fudan1030199 (樓上真智障)

學校 : 桃園市私立復旦高級中學
編號 : 49570
來源 : [140.118.142.210]
最後登入時間 :
2020-12-10 09:54:13
b836. kevin戀愛攻略系列題-2 說好的霸王花呢?? | From: [203.64.191.207] | 發表日期 : 2017-03-17 17:02

#include<iostream>
using namespace std;
int main(){
double a,b;
while(cin>>a>>b){
for(int timer=0;a>0;timer++){
a-=1+timer*b;
}
if(a==0){
cout<<"Go Kevin!!"<<endl;
}
else{
cout<<"No Stop!!"<<endl;
}
}
}

最後一個測資TLE...

 
#11825: Re:為何TLE?


HSUxMichael (IAmTotallyExhausted)

學校 : 臺北市立成功高級中學
編號 : 61983
來源 : [101.10.132.127]
最後登入時間 :
2020-10-11 12:31:31
b836. kevin戀愛攻略系列題-2 說好的霸王花呢?? | From: [1.200.211.8] | 發表日期 : 2017-03-17 23:45

#include
using namespace std;
int main(){
double a,b;
while(cin>>a>>b){
for(int timer=0;a>0;timer++){
a-=1+timer*b;
}
if(a==0){
cout<<"Go Kevin!!"<<endl;
}
else{
cout<<"No Stop!!"<<endl;
}
}
}

最後一個測資TLE...

n=2147483647,m=0


 
ZeroJudge Forum