Submission #5366

#TimeUsernameProblemLanguageResultExecution timeMemory
5366ansol4328쉬운 문제 (GA3_easy)C++98
Compilation error
0 ms0 KiB
int CountPair(n,*a) { int cnt=0, i, j; for(i=0 ; i<n ; i++) for(j=i+1 ; j<n ; j++) if(a[j]%a[i]==0) cnt++; return cnt; }

Compilation message (stderr)

easy.cpp:1:15: error: 'n' was not declared in this scope
easy.cpp:1:18: error: 'a' was not declared in this scope
easy.cpp:1:19: error: expression list treated as compound expression in initializer [-fpermissive]
easy.cpp:2:1: error: expected ',' or ';' before '{' token