Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
55089 lgh 数对 C++ 运行出错 80 509 MS 39316 KB 341 2022-08-08 21:53:37

Tests(8/10):


#include <bits/stdc++.h> using namespace std; const int maxn=1e7+1; int ans[maxn],T,n; void Init() { for(int i=2; i*i<=maxn; i++)for(int j=1; i*i*j<=maxn; j++)ans[i*i*j]=1; for(int i=1; i<=maxn; i++) ans[i]+=ans[i-1]; } int main() { Init(); cin>>T; while(T--) { cin>>n; cout<<ans[n]<<endl; } return 0; }


测评信息: