結果
問題 | No.1527 Input Constant is Good |
ユーザー |
|
提出日時 | 2021-06-06 17:57:36 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 398 bytes |
コンパイル時間 | 1,880 ms |
コンパイル使用メモリ | 164,948 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-23 01:39:15 |
合計ジャッジ時間 | 2,520 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 9 |
ソースコード
//#include <atcoder/all> #include <bits/stdc++.h> //#include <windows.h> //#include <time.h> using namespace std; //using namespace atcoder; using ll = long long; #define all(A) A.begin(),A.end() using vll = vector<ll>; #define rep(i, n) for (long long i = 0; i < (long long)(n); i++) using Graph = vector<vector<ll>>; int main() { ll A,B; cin>>A>>B; cout<<(A<=B?"Yes":"No")<<endl; }