結果

問題 No.1218 Something Like a Theorem
ユーザー magmag
提出日時 2020-09-05 10:32:37
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 800 bytes
コンパイル時間 1,809 ms
コンパイル使用メモリ 166,084 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-11-27 21:48:22
合計ジャッジ時間 5,114 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;
using ll=long long;
#define rep2(i, a, n) for(int i = (a); i < (n); i++)
#define rep(i, n) rep2(i,0,n)

void in(){} template<typename Head,typename... Tail> void in(Head&& head,Tail&&... tail){cin>>head;in(forward<Tail>(tail)...);}

void out(){cout<<endl;} template<typename Head,typename... Tail> void out(Head&& head,Tail&&... tail){cout<<head<<" ";out(forward<Tail>(tail)...);}

ll hoge(int a,int n){
  if(n==1)return n;
  return a*hoge(a,n-1);
}

int main(){
  cin.tie(nullptr);ios_base::sync_with_stdio(false);
  int n,z;
  in(n,z);
  ll a,b,c=hoge(z,n);
  rep2(x,1,z+1){
    a=hoge(x,n);
    rep2(y,1,z+1){
      b=hoge(y,n);
      //out(a,b,c);
      if(a+b==c){
        cout<<"Yes"<<endl;
        return 0;
      }
    }
  }
  cout<<"No"<<endl;
}
0