Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
75864 sh25_shenpy 配对碱基链 C++ 编译错误 0 MS 0 KB 286 2025-12-10 19:33:19

Tests(0/0):


#include<iostream> using namespace std; int main() { char a[256]; cin>>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]=='C') cout<<"G"; else if(a[i]=='G') cout<<"C"; } return 0; }


测评信息: