| 比赛 | 2025暑期集训第6场 | 评测结果 | AWWWWWWWWWWWWWWWWWWWW |
|---|---|---|---|
| 题目名称 | Moo Route | 最终得分 | 5 |
| 用户昵称 | pcx | 运行时间 | 0.262 s |
| 代码语言 | C++ | 内存使用 | 3.86 MiB |
| 提交时间 | 2025-07-12 11:29:49 | ||
#include <bits/stdc++.h>
using namespace std;
const int N = 1e5 + 10;
const int INF = 0x3f3f3f3f;
int n,a[N];
int main() {
freopen("moorouteg.in", "r", stdin);
freopen("moorouteg.out", "w", stdout);
ios::sync_with_stdio(false);
cin.tie(0);
cin>>n;
for(int i=1;i<=n;i++){
cin>>a[i];
}
cout<<2;
return 0;
}