| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1282471 | lyra_g13 | Lightning Rod (NOI18_lightningrod) | C++20 | 0 ms | 0 KiB |
#include <bits/stdc++.h>
using namespace std;
inline int readInt() {
int x = 0;
char ch = getchar();
while (ch < '0' || ch > '9') ch = _getchar_nolock();
while (ch >= '0' && ch <= '9'){
x = (x << 3) + (x << 1) + ch - '0';
ch = _getchar_nolock();
}
return x;
}
int X[10000000], Y[10000000];
int main(){
int N = readInt();
for(int i = 0; i < N; i++) {
X[i] = readInt();
Y[i] = readInt();
}
std::cout << N;
return 0;
}
