Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
5283 | 吴乐涵 | 五个小朋友分巧克力 | C++ | 解答错误 | 0 | 0 MS | 244 KB | 231 | 2020-07-28 21:08:56 |
#include<bits/stdc++.h> using namespace std; int main(){ int n,all,a,b,c,d,e; all=5*n; a=all/2+1; b=all/4+1; c=all/8+1; d=all/16+1; e=all/32+1; printf("%d%d%d%d%d",a,b,c,d,e); return 0; }