| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 102255 | Desciny | 三实数排序 | C++ | Accepted | 100 | 0 MS | 252 KB | 185 | 2023-09-12 16:14:21 |
#include <bits/stdc++.h> using namespace std; double a[3]; int main(){ for(int i=0;i<3;i++) cin>>a[i]; sort(a,a+3); cout<<a[0]<<' '<<a[1]<<' '<<a[2]; return 0; }