Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
100312 | 何松羽 | 12自由落体 | C++ | Wrong Answer | 0 MS | 260 KB | 179 | 2024-12-07 13:14:03 |
#include<bits/stdc++.h> using namespace std; int main(){ for(char i='a';i<='z';i++){ cout<<i<<" "; } for(char j='Z';j<='A';j--){ cout<<j<<" "; } return 0; }
------Input------
3 12
------Answer-----
0.097656
------Your output-----
a b c d e f g h i j k l m n o p q r s t u v w x y z