Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
99335 陈志轩 字符栈 C++ 通过 100 0 MS 232 KB 675 2023-08-22 16:17:28

Tests(1/1):


#include<bits/stdc++.h> //#define int long long using namespace std; namespace Fast{ inline int fr(){ register int x = 0,f = 1; static char c = getchar(); while (c < '0' || c > '9'){ if (c == '-'){ f = -1; } c = getchar(); } while (c >= '0' && c <= '9'){ x = (x << 1) + (x << 3) + (c ^ 48); c = getchar(); } return x * f; } inline void fw(int x){ if (x < 0){ x = -x; putchar('-'); } if (x > 9){ fw(x / 10); } putchar(x % 10 + 48); } } using namespace Fast; signed main(){ for (int i = 26;i >= 1;i--){ char c = i - 1 + 'a'; if (i & 1){ cout<<c<<" "; } } return 0; }


测评信息: