| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 6238 | 陶俊宸 | 奇偶位互换 | C++ | Runtime Error | 0 | 0 MS | 248 KB | 220 | 2020-09-19 21:51:14 |
#include<bits/stdc++.h> using namespace std; int main(){ int c; char s[50]; cin>>c; for(int i=0;i<=c;i++){ gets(s); for(int j=0;j<strlen(s)/2;j++) cout<<s[j*2+1]<<s[j*2]; cout<<endl; } return 0; }