結果

問題 No.1218 Something Like a Theorem
ユーザー kenskens
提出日時 2020-09-04 23:12:07
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 456 ms / 2,000 ms
コード長 464 bytes
コンパイル時間 1,943 ms
コンパイル使用メモリ 200,976 KB
最終ジャッジ日時 2025-01-14 06:25:21
ジャッジサーバーID
(参考情報)
judge5 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i = 0; i < (int)n; i++)
using ll = long long;

int main(){
  int n, z;
  cin >> n >> z;
  int v = 1;
  map<int,int> mp;
  rep(i,n) v *= z;
  for(int i = 1; i <= z; i++) {
    int a = 1;
    rep(j,n) a *= i;
    mp[a]++;
  }
  bool f = false;
  for(int i = 1; i <= z; i++) {
    int a = 1;
    rep(j,n) a *= i;
    if(mp[v-a]) f = true;
  } 
  cout << (f ? "Yes" : "No") << endl;
  return 0;
}
0