# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
976129 | 2024-05-06T08:07:19 Z | vjudge1 | Pizza (COCI21_pizza) | C++17 | 1 ms | 348 KB |
#include <bits/stdc++.h> using namespace std; int main(){ int N; cin >> N; int A[N]; string Ai; for(int i = 0; i < N; i++){ cin >> A[i]; Ai += to_string(A[i]); } int M; cin >> M; int beli = 0; for(int i = 0; i < M; i++){ int K; cin >> K; int B[K]; bool boleh = true; for(int j = 0; j < K; j++){ cin >> B[j]; string Bi = to_string(B[j]); if(Ai.find(Bi) != -1){ boleh = false; } } if(boleh) beli++; } cout << beli <<endl; return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 344 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 344 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 348 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 348 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 348 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |