记录编号 |
238500 |
评测结果 |
AAAAAAAAAAAAAAA |
题目名称 |
Cantor的数表 |
最终得分 |
100 |
用户昵称 |
安呐一条小咸鱼。 |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
1.653 s |
提交时间 |
2016-03-19 10:09:07 |
内存使用 |
0.11 MiB |
显示代码纯文本
#include<iostream>
#include<cstring>
#include<cstdio>
#include<cmath>
namespace bbb
{
int n,x,summ;
int work()
{
while(scanf("%d",&n)!=EOF)
{
x=ceil((-1+sqrt(1+8*n))/2);
summ=(x-1)*x/2;
if (x % 2 == 0) printf("%d/%d\n",n-summ,x-n+summ+1);
else printf("%d/%d\n",x-n+summ+1,n-summ);
}
return 0;
}
}
void *_=freopen("Cantor.in","r",stdin);
void *__= freopen("Cantor.out","w",stdout);
int jboe=bbb::work();
int main(){;}