| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 76798 | sh25_shenpy | 逆序输出字符 | C++ | Wrong Answer | 0 MS | 236 KB | 143 | 2025-12-19 20:21:01 |
#include <bits/stdc++.h> using namespace std; int main( ) { for(int i='z';i>='a';i-=2){ cout<<i<<" "; } return 0; }