| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 430742 | 方相宜 | 【C1-4】数据交换 | C++ | Accepted | 100 | 2 MS | 248 KB | 115 | 2026-02-27 19:56:41 |
#include<iostream> using namespace std; int main() { int a,b; cin>>a>>b; cout<<b<<" "<<a; return 0; }