| 比赛 | 2025暑期集训第6场 | 评测结果 | RRRRRRRRRRRRRRRRRRRRR |
|---|---|---|---|
| 题目名称 | Moo Route | 最终得分 | 0 |
| 用户昵称 | 彭欣越 | 运行时间 | 0.069 s |
| 代码语言 | C++ | 内存使用 | 4.00 MiB |
| 提交时间 | 2025-07-12 12:42:37 | ||
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N=100010;
int n,a[N];
int main () {
freopen("Moo Route.in","r",stdin);
freopen("Moo Route.out","w",stdout);
ios::sync_with_stdio(0);
cin.tie(0),cout.tie(0);
cin >> n;
for (int i=1;i<=n;i++) cin >> a[i];
cout << 2 <<endl;
return 0;
}