| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 67629 | sh25_wangsj | 【入门】打印小写字母表 | C++ | No Test Data | 0 MS | 0 KB | 204 | 2025-09-23 19:35:54 |
#include <iostream> using namespace std; int main() { cout<<"abcdefghijklm"<<endl; cout<<"nopqrstuvwxyz"<<endl; cout<<"zyxwvutsrqpon"<<endl; cout<<"mlkjihgfedcba"; return 0; }