Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
147215 吴诗涵 我家的门牌号 C++ Time Limit Exceeded 1000 MS 268 KB 450 2026-02-03 16:25:37

Tests(0/10):


Code:

#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int a=1,b=1,f=1,n=0; cin>>n; for(int i=1;i<100000;i++){ for(a=1;a<=b;a++){ f+=b; if(f-a*2==n){ cout<<a<<" "<<b; } } b++; } return 0; }