제출 #56353

#제출 시각아이디문제언어결과실행 시간메모리
56353leejseo쉬운 문제 (GA3_easy)C++98
0 / 100
3 ms360 KiB
int CountPair(int N, int *A){
	int ans = 0;
	for (int i=0; i<N; i++){
		for(int j=0; j<N; j++) ans += (A[i]%A[j] == 0);
	}
	return ans;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...