mirror of
https://github.com/Kiritow/OJ-Problems-Source.git
synced 2024-03-22 13:11:29 +08:00
19 lines
254 B
C++
19 lines
254 B
C++
#include <bits/stdc++.h>
|
|
using namespace std;
|
|
|
|
typedef long long ll;
|
|
const int N = 100005;
|
|
const int M = 1000000007;
|
|
|
|
int n, m;
|
|
int a[N];
|
|
|
|
int main() {
|
|
while (~scanf("%d", &n)) {
|
|
for (int i = 0; i < n; i++) {
|
|
scanf("%d", &a[i]);
|
|
}
|
|
|
|
}
|
|
}
|