题解 | #没活了就咬打火姬#
没活了就咬打火姬
https://ac.nowcoder.com/acm/problem/258036
本题直接输出 114514 即可。
#include<bits/stdc++.h>
using namespace std;
using ll=long long;
const ll mod=1e9+7;
const int N=200005;
const int INF=0x3f3f3f3f;
int main(){
printf("114514\n");
return 0;
}