Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
117918 | 罗子童 | 拆分分数 | C++ | Wrong Answer | 1 MS | 272 KB | 459 | 2025-04-20 18:42:58 |
#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 k; cin>>k; for(int x=k+1;x<=2*k;x++){ int a=x-k; int b=x*k; if(b%a==0) cout<<"1/"<<k<<" = 1/"<<x<<" + 1/"<<b/a; } return 0; }
------Input------
4
------Answer-----
1/4 = 1/5 + 1/20 1/4 = 1/6 + 1/12 1/4 = 1/8 + 1/8
------Your output-----
1/4 = 1/5 + 1/201/4 = 1/6 + 1/121/4 = 1/8 + 1/8