#25399: 測資範圍有錯


810416@fhsh.khc.edu.tw (Eric_hung)


n不只1000

#26529: Re:測資範圍有錯


tony20040424@gmail.com (DT)


n不只1000

應該是1000以內,以下是我的測試用程式碼,並沒有TLE出現

 

 

#include<iostream>

 

using namespace std;

 

int main()

{

  int n = 0;

  cin>>n;

  if(n>1000) while(true){}

}