2852: 配对碱基链 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[255]; int i; memset(a,…… 题解列表 2024年11月02日 0 点赞 0 评论 65 浏览 评分:0.0
2852: 配对碱基链 摘要:参考代码:s = input() for i in s: if i == 'A': print('T', end='') …… 题解列表 2024年03月23日 0 点赞 0 评论 209 浏览 评分:0.0
2852: 配对碱基链(Java) 摘要:解题思路:注意事项:参考代码:public static void main(String args[]) { Scanner sc=new Scanner(System.in); Str…… 题解列表 2024年02月06日 0 点赞 0 评论 42 浏览 评分: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 评论 40 浏览 评分:0.0
2852: 配对碱基链 摘要:解题思路:注意事项:参考代码:s = input()t = ""for i in s: if i == 'A': t += 'T' elif …… 题解列表 2024年08月01日 0 点赞 0 评论 155 浏览 评分:0.0
题解 2852: 配对碱基链 摘要: #include using namespace std; char a[256]; int main(){ cin>>a; int q=…… 题解列表 2023年12月29日 0 点赞 0 评论 79 浏览 评分: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 评论 100 浏览 评分:0.0
2852: 配对碱基链 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const ll N=1e5;char …… 题解列表 2024年07月12日 0 点赞 0 评论 32 浏览 评分:0.0