2852: 配对碱基链 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[255]; int i; memset(a,…… 题解列表 2024年11月02日 0 点赞 0 评论 72 浏览 评分:0.0
2852: 配对碱基链 水题解 摘要:解题思路: A变T, C变G注意事项:参考代码:#include <iostream> // #include <sstream> // #include <cstdio> // #includ…… 题解列表 2023年02月14日 0 点赞 0 评论 182 浏览 评分:0.0
2852: 配对碱基链 摘要:参考代码:s = input() for i in s: if i == 'A': print('T', end='') …… 题解列表 2024年03月23日 0 点赞 0 评论 218 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[256],str1[256]; gets(str); st…… 题解列表 2023年06月04日 0 点赞 0 评论 128 浏览 评分:0.0
2852: 配对碱基链 摘要:```cpp #include using namespace std; const int N = 1e7; typedef long long ll; char a[N]; int …… 题解列表 2024年07月12日 0 点赞 0 评论 42 浏览 评分:0.0
2852: 配对碱基链 摘要:解题思路:注意事项:参考代码:s = input()t = ""for i in s: if i == 'A': t += 'T' elif …… 题解列表 2024年08月01日 0 点赞 0 评论 165 浏览 评分:0.0
2852: 配对碱基链(Java) 摘要:解题思路:注意事项:参考代码:public static void main(String args[]) { Scanner sc=new Scanner(System.in); Str…… 题解列表 2024年02月06日 0 点赞 0 评论 43 浏览 评分:0.0
题解 2852: 配对碱基链 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;typedef long long ll;const int N=1e5+1;cha…… 题解列表 2024年07月12日 0 点赞 0 评论 109 浏览 评分:0.0
2852: 配对碱基链 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const ll N=1e5;char …… 题解列表 2024年07月12日 0 点赞 0 评论 38 浏览 评分:0.0
题解 2852: 配对碱基链 摘要: #include using namespace std; char a[256]; int main(){ cin>>a; int q=…… 题解列表 2023年12月29日 0 点赞 0 评论 86 浏览 评分:0.0