# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
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... |