結果

問題 No.1218 Something Like a Theorem
ユーザー SSRSSSRS
提出日時 2020-09-04 21:25:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 710 bytes
コンパイル時間 2,547 ms
コンパイル使用メモリ 205,304 KB
実行使用メモリ 50,304 KB
最終ジャッジ日時 2024-05-04 21:25:52
合計ジャッジ時間 2,858 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

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