Submission #76441827


Source Code Expand

#include <bits/stdc++.h>
using namespace std;
#define nl '\n'
#define int long long

const int inf = 1e9+7;	 


void solve() {
	int a, d; cin >> a >> d;
	if(a<=d) cout << "Yes";
	else cout << "No";
}


signed main() {

	#ifdef local
	auto _clock_start = chrono::high_resolution_clock::now();
	#endif

	ios::sync_with_stdio(false);
	cin.tie(0); 
	int tc = 1;
	// cin >> tc;
	while(tc--) {
		solve();
		cout << nl;
	}

	#ifdef local
	cerr << "Executed in " << chrono::duration_cast<chrono::milliseconds>(chrono::high_resolution_clock::now() - _clock_start).count() << "ms." << nl;
	#endif

	return 0;
}

Submission Info

Submission Time
Task A - Armor
User parthkoul_
Language C++23 (GCC 15.2.0)
Score 100
Code Size 637 Byte
Status AC
Exec Time 1 ms
Memory 3592 KiB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 100 / 100
Status
AC × 3
AC × 14
Set Name Test Cases
Sample sample-01.txt, sample-02.txt, sample-03.txt
All 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt, 10.txt, 11.txt, 12.txt, 13.txt, 14.txt, sample-01.txt, sample-02.txt, sample-03.txt
Case Name Status Exec Time Memory
04.txt AC 1 ms 3368 KiB
05.txt AC 1 ms 3592 KiB
06.txt AC 1 ms 3592 KiB
07.txt AC 1 ms 3484 KiB
08.txt AC 1 ms 3540 KiB
09.txt AC 1 ms 3368 KiB
10.txt AC 1 ms 3368 KiB
11.txt AC 1 ms 3592 KiB
12.txt AC 1 ms 3512 KiB
13.txt AC 1 ms 3484 KiB
14.txt AC 1 ms 3540 KiB
sample-01.txt AC 1 ms 3520 KiB
sample-02.txt AC 1 ms 3468 KiB
sample-03.txt AC 1 ms 3368 KiB