n不只1000
應該是1000以內,以下是我的測試用程式碼,並沒有TLE出現
#include<iostream>
using namespace std;
int main()
{
int n = 0;
cin>>n;
if(n>1000) while(true){}
}