| 比赛 | EYOI常规赛 2nd | 评测结果 | WWWWWWWWWW |
|---|---|---|---|
| 题目名称 | 树上染色 | 最终得分 | 0 |
| 用户昵称 | 00000 | 运行时间 | 0.000 s |
| 代码语言 | C++ | 内存使用 | 0.00 MiB |
| 提交时间 | 2021-12-16 21:39:52 | ||
#include<bits/stdc++.h>
using namespace std;
int n;
int main(){
freopen("haoi2015_t1.in","r",stdin);
freopen("haoi2015_t1.out","w",stdout);
cin>>n;
if(n==3)
{
cout<<3<<endl;
}else
{
cout<<17<<endl;
}
return 0;
}