2 条题解
-
1麦嘉峻 (maijiajun) LV 9 @ 2023-1-4 12:20:07
#include<bits/stdc++.h> using namespace std; char ch; char findd(char x) { if(x=='A')return 'T'; if(x=='T')return 'A'; if(x=='G')return 'C'; return 'G'; } int main() { ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); while(cin>>ch) { cout<<findd(ch); } return 0; }
-
02023-3-31 21:02:34@
#include <bits/stdc++.h> char turn(char x){ if(x == 'A'){return 'T';} else if(x == 'T'){return 'A';} else if(x == 'G'){return 'C';} else{return 'G';} } char a[114514]; using namespace std; const int N = 1e5 + 10; const int INF = 0x3f3f3f3f; int main(){ cin >> a; for(int i = 0;i < strlen(a);i++) cout << turn(a[i]); } return 0; }
- 1
信息
- ID
- 1122
- 时间
- 1000ms
- 内存
- 128MiB
- 难度
- 2
- 标签
- 递交数
- 54
- 已通过
- 33
- 上传者