| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 39917 | yuhaoyu | 对齐输出 | C++ | Presentation Error | 0 MS | 256 KB | 133 | 2024-02-06 15:33:05 |
#include<iostream> using namespace std; int main() { int a,b,c; cin>>a>>b>>c; printf("%-7d %-7d %-7d",a,b,c); return 0; }