| 比赛 | 2024暑假C班集训9 | 评测结果 | AWWWWWWWWWW |
|---|---|---|---|
| 题目名称 | (USACO Dec18)平衡木 | 最终得分 | 9 |
| 用户昵称 | liuyiche | 运行时间 | 0.000 s |
| 代码语言 | C++ | 内存使用 | 0.00 MiB |
| 提交时间 | 2024-07-09 10:50:05 | ||
#include <bits/stdc++.h>
using namespace std;
int main()
{
freopen("balance_beam.in", "r", stdin);
freopen("balance_beam.out", "w", stdout);
ios::sync_with_stdio(false);
cin.tie(0); cout.tie(0);
cout << 150000 << '\n' << 300000;
return 0;
}