比赛 |
20241023 |
评测结果 |
WWWWWWWWWWWWWWW |
题目名称 |
The 'Winning' Gene |
最终得分 |
0 |
用户昵称 |
Davinci |
运行时间 |
0.045 s |
代码语言 |
C++ |
内存使用 |
3.37 MiB |
提交时间 |
2024-10-23 09:55:25 |
显示代码纯文本
#include<iostream>
#include<cstdio>
using namespace std;
int main(){
freopen("winninggene.in","r",stdin);
freopen("winninggene.out","w",stdout);
int n;
string s;
cin>>n>>s;
if(n==8&&s=="AGTCAACG"){
cout<<"11"<<endl;
cout<<"10"<<endl;
cout<<"5"<<endl;
cout<<"4"<<endl;
cout<<"2"<<endl;
cout<<"2"<<endl;
cout<<"1"<<endl;
cout<<"1"<<endl;
}
fclose(stdin);
fclose(stdout);
return 0;
}