| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 73177 | sh25_shenpy | 【入门】打印小写字母表 | C++ | No Test Data | 0 MS | 0 KB | 216 | 2025-11-07 17:40:40 |
#include <bits/stdc++.h> using namespace std; int main( ) { cout<<"abcdefghijklm"<<endl; cout<<"nopqrstuvwxyz"<<endl; cout<<"zyxwvutsrqpon"<<endl; cout<<"mlkjihgfedcba"<<endl; return 0; }