| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 5762 | 朱彦宇 | 对齐输出 | C++ | Presentation Error | 0 | 0 MS | 256 KB | 155 | 2020-08-15 08:35:28 |
#include<bits/stdc++.h> using namespace std; int main(){ int a, b, c; scanf("%d %d %d", &a, &b, &c); printf("%8d %8d %8d", a, b, c); return 0; }