結果
| 問題 |
No.1850 Rewrite Product
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-02-26 10:08:55 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,814 bytes |
| コンパイル時間 | 7,555 ms |
| コンパイル使用メモリ | 286,656 KB |
| 最終ジャッジ日時 | 2025-01-28 03:05:51 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | TLE * 1 |
ソースコード
#include <bits/stdc++.h>
#include <boost/multi_array.hpp>
#include <boost/optional.hpp>
#include <boost/range/irange.hpp>
#include <boost/range/algorithm.hpp>
#include <boost/range/adaptors.hpp>
//#include <atcoder/all>
//using namespace atcoder;
using namespace std;
namespace adaptor = boost::adaptors;
using ll = long long;
using ull = unsigned long long;
using ld = long double;
using vi = vector<int>;
using vvi = vector<vi>;
using vvvi = vector<vvi>;
using vl = vector<long>;
using vvl = vector<vl>;
using pii = pair<int, int>;
using pll = pair<long, long>;
using vpii = vector<pii>;
using vpll = vector<pll>;
using vstr = vector<string>;
constexpr ll INF_LL=1LL<<60;
constexpr int INF_I=1LL<<30;
#define rep(i,n) for(int i=0; i<((int)(n)); i++)
#define reps(i,n) for(int i=1; i<=((int)(n)); i++)
#define rrep(i,n) for(int i=((int)(n)); i>0; i--)
#define rreps(i,n) for(int i=((int)(n)-1); i>=0; i--)
#define ALL(x) (x).begin(), (x).end()
#define YesNo(x) ((x) ? "Yes" : "No")
#define pb emplace_back
template <typename T>
bool chmax(T &a, const T& b) {
if (a < b){
a = b;
return true;
}
return false;
}
template <typename T>
bool chmin(T &a, const T& b) {
if (a > b){
a = b;
return true;
}
return false;
}
ll ceilint(ll x, ll y) { // x/y の 切り上げ
return (x + y - 1) / y;
}
void Main();
int main() {
std::cin.tie(nullptr);
std::ios_base::sync_with_stdio(false);
std::cout << std::fixed << std::setprecision(15);
Main();
return 0;
}
//-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
void Main() {
int T;
cin >> T;
while (T--) {
int X, Y;
cin >> X >> Y;
bool ans = false;
for (int a = 1; a <= sqrt(Y); a++)
if (Y % a == 0) {
int b = Y / a;
if (a + b == X)
ans = true;
}
cout << YesNo(ans) << endl;
}
}