Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
147216 吴诗涵 我家的门牌号 C++ Wrong Answer 1 MS 264 KB 496 2026-02-03 16:27:19

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; } else{ break; } } b++; } return 0; }


Run Info:

------Input------
8923
------Answer-----
61 134
------Your output-----