| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 102177 | 宋春霖 | 三实数排序 | C++ | Wrong Answer | 75 | 0 MS | 248 KB | 190 | 2023-09-12 13:46:20 |
#include<bits/stdc++.h> using namespace std; int a[3]; int main(){ cin >> a[1] >> a[2] >> a[3]; sort(a + 1, a + 3 + 1); cout << a[1] << " " << a[2] << " " << a[3]; return 0; }