제출 #1203976

#제출 시각아이디문제언어결과실행 시간메모리
1203976Trn115쉬운 문제 (GA3_easy)C++20
100 / 100
0 ms328 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 timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...