# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
2941 | 2013-08-13T10:47:10 Z | imsifile | 쉬운 문제 (GA3_easy) | C++ | 0 ms | 0 KB |
int cnt,i,j; void CountPair(int n, int* ba){ for(i=0;i<n;i++){ for(j=0;j<i;j++)cnt+=!(ba[i]%ba[j]); } return cnt; }