ABC122-B
3809 ワード
ABC122-B AtCoder
#include<iostream>
using namespace std;
int main() {
string S;
int lenS;
int cnt = 0;
int ans = 0;
cin >> S;
lenS = S.length();
for (int i = 0; i < lenS; i++) {
if (S[i] == 'A' || S[i] == 'C' || S[i] == 'G' || S[i] == 'T') cnt++;
else cnt = 0;
ans = max(ans, cnt);
}
cout << ans << endl;
return 0;
}
Author And Source
この問題について(ABC122-B), 我々は、より多くの情報をここで見つけました https://zenn.dev/webdebris/articles/e2b2d98bdd32f2著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Collection and Share based on the CC protocol