# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
152889 | 2019-09-10T11:34:52 Z | 2qbingxuan | 함수컵 박물관 (FXCUP4_museum) | C++17 | 2 ms | 256 KB |
#include <bits/stdc++.h> using namespace std; typedef int64_t ll; int64_t CountSimilarPairs(vector<int> A,vector<int> B,vector<int> C) { int n = A.size(); ll res; for(int i = 0; i < n; i++) for(int j = 0; j < i; j++) { if(A[i]==A[j] || B[i]==B[j] || C[i]==C[j]) res++; } return res; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 256 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 256 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |