Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
54937 | xit. | 数对 | C++ | 运行超时 | 10 | 1000 MS | 248 KB | 652 | 2022-08-08 11:31:55 |
#include <bits/stdc++.h> using namespace std; inline int Read() { static int x=0,c=getchar(); for(; c<=47||c>=58; c=getchar()); for(x=0; c>=48&&c<=57; c=getchar()) x=(x<<3)+(x<<1)+(c&15); return x; } int main() { // freopen("pair.in","r",stdin); // freopen("pair.out","w",stdout); int t=Read(); while(t--) { int n=Read(),ans=0; double a,b,q; int Q; for(int i=2; i<=n; i++) for(a=1; a<i; a++) { b=i-a; q=a*b/(a+b); Q=q; if(q==Q) { ans++; break; } } printf("%d\n",ans); } return 0; }