Submission #9597101


Source Code Expand

#include <bits/stdc++.h>
#define REP(i, n) for(int i = 0;i < n;i++)
#define VSORT(v) sort(v.begin(), v.end())
#define VRSORT(v) sort(v.rbegin(), v.rend())
#define ll long long
using namespace std;
typedef pair<int, int> P;
typedef pair<ll, ll> LP;
typedef pair<int, P> PP;
typedef pair<ll, LP> LPP;
//typedef vector<unsigned int>vec;
//typedef vector<ll>vec;
//typedef vector<vec> mat;
typedef vector<vector<int>> Graph;

const int dx[8] = {1, 0, -1, 0, 1, -1, -1, 1};
const int dy[8] = {0, 1, 0, -1, 1, 1, -1, -1};
const int INF = 1000000000;
const ll LINF = 1000000000000000000;//1e18
const ll  MOD = 1000000007;
const double PI = acos(-1.0);
const double EPS = 1e-10;

template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; }
template<class T> inline void add(T &a, T b){a = ((a+b) % MOD + MOD) % MOD;};


int main(){
    cin.tie(0);
    ios::sync_with_stdio(false);
    int N, M;
    cin >> N >> M;
    if(N == M) cout << "Yes" << endl;
    else cout << "No" << endl;
}

Submission Info

Submission Time
Task A - AC or WA
User Bondo416
Language C++14 (GCC 5.4.1)
Score 100
Code Size 1151 Byte
Status AC
Exec Time 9 ms
Memory 892 KiB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 100 / 100
Status
AC × 3
AC × 13
Set Name Test Cases
Sample sample_01, sample_02, sample_03
All ac_01, ac_02, ac_03, ac_04, ac_05, sample_01, sample_02, sample_03, wa_01, wa_02, wa_03, wa_04, wa_05
Case Name Status Exec Time Memory
ac_01 AC 9 ms 892 KiB
ac_02 AC 1 ms 256 KiB
ac_03 AC 1 ms 256 KiB
ac_04 AC 1 ms 256 KiB
ac_05 AC 1 ms 256 KiB
sample_01 AC 1 ms 256 KiB
sample_02 AC 1 ms 256 KiB
sample_03 AC 1 ms 256 KiB
wa_01 AC 1 ms 256 KiB
wa_02 AC 1 ms 256 KiB
wa_03 AC 1 ms 256 KiB
wa_04 AC 1 ms 256 KiB
wa_05 AC 1 ms 256 KiB