Wrong Answer
Code
#include <iostream>
#include <vector>
#include <set>
#include <algorithm>
using namespace std;
int main(){
ios :: sync_with_stdio(false);
cin.tie(0);
int tc;
cin>>tc;
while(tc--){
int n,m;
cin>>n>>m;
vector<int>v(n),vv(m);
set<int>st,st2;
for(auto &it:v){
cin>>it;
st.insert(it);
}
for(auto &it:vv){
cin>>it;
st2.insert(it);
}
if(st.size() == 10 && st2.size() == 10){
cout<<"YES\n";
}
else{
cout<<"NO\n";
}
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1153 Is Date Possible?
- Contest
- Happy New Year 2025
- Language
- C++17 (G++ 13.2.0)
- Submit At
- 2025-01-02 14:47:45
- Judged At
- 2025-01-02 14:47:45
- Judged By
- Score
- 80
- Total Time
- 19ms
- Peak Memory
- 1.309 MiB