Submission #148384

#TimeUsernameProblemLanguageResultExecution timeMemory
148384(대충 적당한 팀명) (#200)FunctionCup Museum (FXCUP4_museum)C++17
Compilation error
0 ms0 KiB
#include "museum.h"

long long CountSimilarPairs(std::vector<int> B, std::vector<int> T, std::vector<int> G) {
	int N = B.size();
	int check
	int ans = 0;
	for(int i=0;i<N;i++){
		for(int j=i+1;j<N;j++){
			if(B[i] == B[j]){
				ans++;
				continue;
			}
			if(T[i] == T[j]){
				ans++;
				continue;
			}
			if(G[i] == G[j]){
				ans++;
				continue;
			}
		}
	}
	return ans;
}

Compilation message (stderr)

museum.cpp: In function 'long long int CountSimilarPairs(std::vector<int>, std::vector<int>, std::vector<int>)':
museum.cpp:6:2: error: expected initializer before 'int'
  int ans = 0;
  ^~~
museum.cpp:10:5: error: 'ans' was not declared in this scope
     ans++;
     ^~~
museum.cpp:14:5: error: 'ans' was not declared in this scope
     ans++;
     ^~~
museum.cpp:18:5: error: 'ans' was not declared in this scope
     ans++;
     ^~~
museum.cpp:23:9: error: 'ans' was not declared in this scope
  return ans;
         ^~~