結果
| 問題 |
No.1850 Rewrite Product
|
| コンテスト | |
| ユーザー |
Nachia
|
| 提出日時 | 2022-02-25 21:25:46 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 51 ms / 2,000 ms |
| コード長 | 723 bytes |
| コンパイル時間 | 710 ms |
| コンパイル使用メモリ | 81,692 KB |
| 最終ジャッジ日時 | 2025-01-28 01:52:12 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 1 |
ソースコード
#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;
Nachia