Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
23150 LeoWang 配对碱基链 C++ 通过 0 MS 244 KB 272 2023-07-21 20:43:20

Tests(1/1):


#include<bits/stdc++.h> using namespace std; int main() { char a[256]; gets(a); for(int i=0;i<strlen(a);i++){ if((a[i]=='A')) cout<<"T"; else if((a[i]=='T')) cout<<"A"; else if((a[i]=='G')) cout<<"C"; else if((a[i]=='C')) cout<<"G"; } return 0; }


测评信息: