| 比赛 | 20241023 | 评测结果 | WWWWWWWWWWWWWWWWWWWW |
|---|---|---|---|
| 题目名称 | Cowreography | 最终得分 | 0 |
| 用户昵称 | Davinci | 运行时间 | 0.060 s |
| 代码语言 | C++ | 内存使用 | 3.33 MiB |
| 提交时间 | 2024-10-23 11:39:08 | ||
#include<iostream>
#include<cstdio>
using namespace std;
int main(){
freopen("cowreography.in","r",stdin);
freopen("cowreography.out","w",stdout);
int n,k;
cin>>n>>k;
if(n==5&&k==4){
cout<<2;
return 0;
}else{
cout<<3;
}
fclose(stdin);
fclose(stdout);
return 0;
}