Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
54918 seanlsy 连续的正整数 C++ 解答错误 0 407 MS 256 KB 583 2022-08-08 11:30:15

Tests(0/10):


#include <bits/stdc++.h> using namespace std; inline int read(){ int x=0;bool f=1;char ch=getchar(); while(ch<'0'||ch>'9'){if(ch=='-') f=0;ch=getchar();} while(ch>='0'&&ch<='9') x=(x<<3)+(x<<1)+(ch^48),ch=getchar(); return f?x:-x; } int n,p,t,ans; int main(){ // freopen("number.in","r",stdin); // freopen("number.out","w",stdout); t=read(); while(t--){ n=read(),p=read(),ans=-1; if(p==1){ puts("1"); continue; } for(int i=1;i<=100;i++) if(!(((i<<1)+n-1)*n%(p<<1))){ ans=i; break; } printf("%d\n",ans); } return 0; }


测评信息: