結果
| 問題 | No.1527 Input Constant is Good |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-07-15 18:40:14 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 886 bytes |
| コンパイル時間 | 4,039 ms |
| コンパイル使用メモリ | 251,320 KB |
| 実行使用メモリ | 7,716 KB |
| 最終ジャッジ日時 | 2025-07-15 18:40:19 |
| 合計ジャッジ時間 | 4,515 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 9 |
ソースコード
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll = long long;
using ld = long double;
using ull = unsigned long long;
using vi = vector<ll>;
using vvi = vector<vi>;
using vc = vector<char>;
using vvc = vector<vc>;
using vb = vector<bool>;
using vvb = vector<vb>;
using vs = vector<string>;
using pii = pair<ll, ll>;
using vpii = vector<pii>;
using mint = modint998244353;
// using mint = modint1000000007;
#define endl '\n'
#define rep(i, a) for (ll i = 0; i < a; i++)
#define f(i, a, b) for (ll i = a; i < b; i++)
#define rf(i, a, b) for (ll i = a; i > b; i--)
const ll INF = LLONG_MAX / 4;
void io_setup() {
cin.tie(0);
ios::sync_with_stdio(0);
cout << fixed << setprecision(16);
}
int main(void) {
io_setup();
int a,b;
cin >> a >> b;
if(a <= b)cout << "Yes" << endl;
else cout << "No" << endl;
}