結果
問題 |
No.1527 Input Constant is Good
|
ユーザー |
![]() |
提出日時 | 2025-07-16 16:30:47 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,285 bytes |
コンパイル時間 | 4,560 ms |
コンパイル使用メモリ | 335,352 KB |
実行使用メモリ | 7,716 KB |
最終ジャッジ日時 | 2025-07-16 16:30:52 |
合計ジャッジ時間 | 5,273 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 9 |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace atcoder; using namespace std; typedef long long ll; typedef long double ld; typedef unsigned long long ull; typedef pair<ll,ll> pll; // // ??????? // /* ---------------------- ???? ---------------------- */ // #include <boost/multiprecision/cpp_dec_float.hpp> // #include <boost/multiprecision/cpp_int.hpp> // namespace mp = boost::multiprecision; // // ?????? // using Bint = mp::cpp_int; // // ????10???1024?????????(TLE????????) // using Real = mp::number<mp::cpp_dec_float<1024>>; // /* ---------------------- ???? ---------------------- */ using mint = modint998244353; // using mint = modint1000000007; ll mod = 998244353; // ll mod = 1000000007; ll inf = 2e18; #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define rep1(i, n) for (int i = 1; i <= (int)(n); i++) #define all(a) (a).begin(), (a).end() template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } int main(){ ios_base::sync_with_stdio(0); cin.tie(nullptr); ll a,b; cin>>a>>b; if(a<=b)cout << "Yes\n"; else cout << "No\n"; }