Wrong Answer
Code
#include<bits/stdc++.h>
using namespace std;
#define ll long long
void solve(){
int n,m, x, y, p,q;
cin>>n>>m >> x >> y >> p >> q;
if(x<p && y<q){
cout << "Yes\n";
}else{
cout << "No\n";
}
}
signed main(){
ios_base::sync_with_stdio;
cin.tie();
cout.tie();
int t; cin >> t;
while(t--){
solve();
}
}
Information
- Submit By
- Type
- Submission
- Problem
- P1115 Destination
- Contest
- LU IUJPC : Sylhet Division 2024, Mock Round
- Language
- C++17 (G++ 13.2.0)
- Submit At
- 2024-12-07 11:44:50
- Judged At
- 2024-12-07 11:44:50
- Judged By
- Score
- 10
- Total Time
- 300ms
- Peak Memory
- 856.0 KiB