# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
148484 | 2019-09-01T04:31:57 Z | (대충 적당한 팀명)(#3621, rose0310, cos18, baikdohyup) | FunctionCup Museum (FXCUP4_museum) | C++17 | 5 ms | 384 KB |
#include "museum.h" long long CountSimilarPairs(std::vector<int> B, std::vector<int> T, std::vector<int> G) { int N = B.size(); int ans = 0; int check[200001][200001]={}; std::vector<int> save; for(int i=0;i<N;i++){ for(int j=i+1;j<N;j++){ if(!check[i][j] || B[i] == B[j] || T[i] == T[j] || G[i] == G[j]){ ans++; save.push_back(j); check[i][j] = 1; continue; } } for(int k = 0;k<save.size();k++){ for(int l = k;l<save.size();l++){ ans++; check[k][l]=1; } } save.clear(); } return ans; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 5 ms | 384 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 5 ms | 384 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |