noip 2022 第二题 喵了个喵 meow 在 Lemon LemonLime 中 SPJ Special Judge 测评配置设置
比赛目录如下:



用户程序(meow.cpp)如下:
#include <bits/stdc++.h>
using namespace std;
template<typename T>
inline void read(T &x) {
x = 0; char ch = getchar();
bool f = 0;
while (!isdigit(ch)) f |= ch == '-', ch = getchar();
while (isdigit(ch)) x = x * 10 + ch - 48, ch = getchar();
if (f) x = -x;
}
template<typename T>
inline void write(T x, char c) {
if (x == 0) {
putchar('0'), putchar(c);
return;
}
static int stk[20];
int top = 0;
while (x) stk[++top] = x % 10, x /= 10;
while (top) putchar('0' + stk[t