| 比赛 |
2026.9.5 |
评测结果 |
AWWWWWAWWWWWWWWWWWWWWWWWW |
| 题目名称 |
Tree Decorations |
最终得分 |
8 |
| 用户昵称 |
终焉折枝 |
运行时间 |
0.070 s |
| 代码语言 |
C++ |
内存使用 |
3.61 MiB |
| 提交时间 |
2026-09-05 12:50:40 |
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
using ll = long long;
using f64 = double;
using f128 = long double;
using pii = pair<int, int>;
using pll = pair<ll, ll>;
using vi = vector<int>;
using vll = vector<ll>;
#define pb emplace_back
#define mk make_pair
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
#define sz(x) (int)((x).size())
#define ciallo(x) cerr << (x) << '\n';
template <typename T, typename U>
inline bool chmin(T& a, const U& b){return (b < a ? a = b, true : false);}
template <typename T, typename U>
inline bool chmax(T& a, const U& b){return (a < b ? a = b, true : false);}
inline void solve(){
cout << 0 << '\n';
}
int main(){
freopen("Decorations.in", "r", stdin);
freopen("Decorations.out", "w", stdout);
cin.tie(0) -> ios::sync_with_stdio(0);
int T = 1;
while(T --) solve();
// #ifdef LOCAL
// cout << "Time: " << 1.0 * clock() / CLOCKS_PER_SEC << " s\n ";
// #endif
return 0;
}