| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 99289 | 梁颢城 | 字符栈 | C++ | Wrong Answer | 0 | 0 MS | 244 KB | 252 | 2023-08-22 16:04:46 |
#include<bits/stdc++.h> using namespace std; int main(){ char a; char b[1000]; int cnt = 0; for(int i = 0;i < 26;i++){ a = 'a'+i; if(i%2 == 0){ b[i] = a; cnt++; } } for(int i = 0;i < cnt;i++){ printf("%c",b[i]); } }