結果
問題 | No.1850 Rewrite Product |
ユーザー | 👑 Nachia |
提出日時 | 2022-02-25 21:25:46 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 45 ms / 2,000 ms |
コード長 | 723 bytes |
コンパイル時間 | 654 ms |
コンパイル使用メモリ | 86,316 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-03 16:04:24 |
合計ジャッジ時間 | 1,096 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 45 ms
5,376 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <unordered_set> #include <atcoder/modint> using namespace std; using i64 = long long; #define rep(i,n) for(int i=0; i<(int)(n); i++) using modint = atcoder::static_modint<998244353>; int main(){ int T; cin >> T; while(T--){ i64 X, Y; cin >> X >> Y; i64 MaxY = 1001001001; if(X == 1) MaxY = 1; if(X == 2) MaxY = 2; if(X == 3) MaxY = 3; if(X == 4) MaxY = 4; if(Y <= MaxY) cout << "Yes\n"; else cout << "No\n"; } return 0; } struct ios_do_not_sync{ ios_do_not_sync(){ std::ios::sync_with_stdio(false); std::cin.tie(nullptr); } } ios_do_not_sync_instance;