Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
128958 | fkccf | 逆序输出数组 | C++ | 解答错误 | 50 | 0 MS | 252 KB | 384 | 2024-01-26 14:30:35 |
#include<bits/stdc++.h> #define _(e...) ({e;}) #define x(a,e...) _(auto x=a;e) #define $(a,e...) if(a){e;}else #define i(n,e...) {int $n=n;int i=0;for(;i<$n;++i){e;}} #define DBG(a...) //_(a) using I=int; #define dg isdigit(c=getchar()) I rd(){int c;while(!dg);I x=c-'0';while(dg)x=x*10+c-'0';return x;} int main(){I n=rd();for(I i=n;i>=1;i--)printf("%d\n",1<<i); return 0;}