結果
問題 | No.1218 Something Like a Theorem |
ユーザー | yakki |
提出日時 | 2020-09-04 21:37:30 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 15 ms / 2,000 ms |
コード長 | 1,543 bytes |
コンパイル時間 | 1,299 ms |
コンパイル使用メモリ | 114,840 KB |
最終ジャッジ日時 | 2025-01-14 05:17:10 |
ジャッジサーバーID (参考情報) |
judge5 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 16 |
ソースコード
#include<iostream> #include<string> #include<vector> #include<algorithm> #include<bitset> #include<set> #include<map> #include<stack> #include<queue> #include<deque> #include<list> #include<iomanip> #include<cmath> #include<cstring> #include<functional> #include<cstdio> #include<cstdlib> #include<numeric> using namespace std; #define repr(i, a, b) for (int i = (int)(a); i < (int)(b); i++) #define rep(i, n) repr(i, 0, n) #define INF 2e9 //#define MOD 1000000007 #define MOD 998244353 #define LINF (long long)4e18 #define jck 3.141592 const double EPS = 1e-10; using ll = long long; using Pi = pair<int,int>; using Pl = pair<ll,ll>; int main(){ int n,z; cin >> n >> z; if(z == 1){ cout << "No" << endl; return 0; } if(n == 1){ bool ok = false; repr(x,1,z){ if(z-x >= 1){ ok = true; break; } } cout << (ok?"Yes":"No") << endl; return 0; } int zz = z; rep(i,n-1) zz *= z; repr(x,1,z)repr(y,1,z){ ll xx = x; ll yy = y; bool ok = true; rep(i,n-1){ xx *= x; if(xx > zz){ ok = false; break; } } rep(i,n-1){ yy *= y; if(yy > zz){ ok = false; break; } } if(!ok) continue; if(xx+yy == zz){ cout << "Yes" << endl; return 0; } } cout << "No" << endl; }