# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1203976 | Trn115 | 쉬운 문제 (GA3_easy) | C++20 | 0 ms | 328 KiB |
int CountPair(int N, int *A){
int res = 0;
for (int j = 1; j < N; ++j) {
for (int i = 0; i < j; ++i) {
if (A[j] % A[i] == 0) {
++res;
}
}
}
return res;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |