比赛 | 4043级2023省选模拟赛7 | 评测结果 | WWWAAAWWAWWWWWWWWWWW |
---|---|---|---|
题目名称 | Subtree Activation | 最终得分 | 20 |
用户昵称 | ムラサメ | 运行时间 | 0.000 s |
代码语言 | C++ | 内存使用 | 0.00 MiB |
提交时间 | 2023-03-29 10:57:31 | ||
#include<bits/stdc++.h> using namespace std; int n; int main(){ freopen("shujihuo.in","r",stdin); freopen("shujihuo.out","w",stdout); ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); cin>>n; if(n==3){ cout<<"6"<<endl; } else{ if(n==40){ cout<<"132"<<endl; } else{ if(n==5000){ cout<<"18824"<<endl; } } } return 0; }