結果

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  int n, z;
  cin >> n >> z;
  if (n == 1){
    if (z == 1){
      cout << "No" << endl;
    } else {
      cout << "Yes" << endl;
    }
  }
  int c = 1;
  for (int i = 0; i < n; i++){
    c *= z;
  }
  set<int> st;
  int b = 1;
  while (1){
    long long p = 1;
    bool big = false;
    for (int i = 0; i < n; i++){
      p *= b;
      if (p > c){
        big = true;
        break;
      }
    }
    if (big){
      break;
    } else {
      st.insert(p);
      b++;
    }
  }
  bool ok = false;
  for (int a : st){
    if (st.count(c - a)){
      ok = true;
    }
  }
  if (ok){
    cout << "Yes" << endl;
  } else {
    cout << "No" << endl;
  }
}
0