| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 338471 | admin_rjp | 【C1-4】数据交换 | C++ | Accepted | 100 | 5 MS | 248 KB | 151 | 2025-08-07 15:11:21 |
#include<iostream> using namespace std; int main(){ int a,b,t; cin>>a>>b; t=a; a=b; b=t; cout<<a<<" "<<b; return 0; }