Submission #76450465


Source Code Expand

#include <bits/stdc++.h>
using namespace std;
//#define int ll
//#define ll long long
#define pb emplace_back
#define pr pair<int,int>
#define mp make_pair
#define endl "\n"
inline int read()
{
	int x=0,f=1;char ch=getchar();
	while (ch<'0'||ch>'9'){if (ch=='-') f=-1;ch=getchar();}
	while (ch>='0'&&ch<='9'){x=x*10+ch-48;ch=getchar();}
	return x*f;
}
void write(int x)
{
    if(x<0)putchar('-'),x=-x;
    if(x<10)putchar(x+'0');
    else write(x/10),putchar(x%10+'0');
}

signed main(){
	long long a=read(),b=read();
	if(a<=b) cout<<"Yes";else cout<<"No"; 
}


Submission Info

Submission Time
Task A - Armor
User Fireflies
Language C++23 (GCC 15.2.0)
Score 100
Code Size 590 Byte
Status AC
Exec Time 1 ms
Memory 3608 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 3580 KiB
05.txt AC 1 ms 3396 KiB
06.txt AC 1 ms 3448 KiB
07.txt AC 1 ms 3396 KiB
08.txt AC 1 ms 3436 KiB
09.txt AC 1 ms 3412 KiB
10.txt AC 1 ms 3416 KiB
11.txt AC 1 ms 3444 KiB
12.txt AC 1 ms 3432 KiB
13.txt AC 1 ms 3472 KiB
14.txt AC 1 ms 3432 KiB
sample-01.txt AC 1 ms 3608 KiB
sample-02.txt AC 1 ms 3396 KiB
sample-03.txt AC 1 ms 3440 KiB