This repository has been archived on 2023-08-03. You can view files and clone it, but cannot push or open issues or pull requests.
code/3.cpp

14 lines
203 B
C++
Raw Permalink Normal View History

2020-10-29 16:17:36 +00:00
#include <bits/stdc++.h>
#define f first
#define s second
using namespace std;
using ll = long long;
using ii = pair<int, int>;
2022-03-06 03:18:23 +00:00
const int MX = 1e5+5;
2020-10-29 16:17:36 +00:00
int main() {
2021-06-09 20:15:43 +00:00
cin.tie(0)->sync_with_stdio(0);
2022-02-22 18:02:36 +00:00
2022-03-06 03:18:23 +00:00
}