Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
65282 | 王一涵(吃土豆长大的马铃薯) | 字符串比较 | C++ | Accepted | 0 MS | 264 KB | 157 | 2025-05-15 17:07:02 |
#include <bits/stdc++.h> using namespace std; int main() { string a[5]; cin >> a[1] >> a[2] >> a[3]; sort(a+1,a+4); cout << a[3]; return 0; }