Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
30982 | 李姝仪1.0 | 对齐输出 | C++ | Presentation Error | 0 MS | 240 KB | 151 | 2023-11-12 16:08:48 |
#include<iostream> using namespace std; int main() { int a[3]; cin>>a[0]>>a[1]>>a[2]; cout<<a[0]<<" "<<a[1]<<" "<<a[2]; return 0; }