# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
203663 | ics0503 | Naan (JOI19_naan) | C++17 | 76 ms | 632 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<stdio.h>
#include<set>
#include<vector>
using namespace std;
set<long long >people;
struct xy { int x; double y; }L[2121];
double need[2121];
long long v[2121][2121], S[2121][2121];
long long gcd(long long a, long long b) {
if (b == 0)return a;
return gcd(b, a%b);
}
vector<int>ans;
int main() {
freopen("input.txt", "r", stdin);
long long n, l, i, j; scanf("%lld%lld", &n, &l);
for (i = 1; i <= n; i++)people.insert(i);
bool flag = 1;
for (i = 1; i <= n; i++) {
for (j = 1; j <= l; j++)scanf("%lld", &v[i][j]);
long long gg = v[i][1];
for (j = 1; j <= l; j++)gg = gcd(gg, v[i][j]);
for (j = 1; j <= l; j++) {
v[i][j] /= gg; S[i][j] = S[i][j - 1] + v[i][j];
need[i] += v[i][j];
if (v[i][j] != v[1][j])flag = 0;
}
need[i] /= n;
}
if (flag) {
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |