結果

問題 No.1218 Something Like a Theorem
ユーザー umezoumezo
提出日時 2020-09-04 22:19:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 306 ms / 2,000 ms
コード長 567 bytes
コンパイル時間 2,443 ms
コンパイル使用メモリ 208,976 KB
実行使用メモリ 17,536 KB
最終ジャッジ日時 2024-11-26 14:11:17
合計ジャッジ時間 8,006 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 282 ms
17,536 KB
testcase_01 AC 276 ms
17,536 KB
testcase_02 AC 273 ms
17,408 KB
testcase_03 AC 284 ms
17,408 KB
testcase_04 AC 282 ms
17,536 KB
testcase_05 AC 268 ms
17,536 KB
testcase_06 AC 267 ms
17,536 KB
testcase_07 AC 273 ms
17,408 KB
testcase_08 AC 268 ms
17,408 KB
testcase_09 AC 269 ms
17,536 KB
testcase_10 AC 301 ms
17,536 KB
testcase_11 AC 306 ms
17,536 KB
testcase_12 AC 282 ms
17,408 KB
testcase_13 AC 273 ms
17,536 KB
testcase_14 AC 278 ms
17,408 KB
testcase_15 AC 269 ms
17,536 KB
testcase_16 AC 273 ms
17,536 KB
testcase_17 AC 288 ms
17,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define ALL(v) v.begin(), v.end()
typedef long long ll;

#include <bits/stdc++.h>
using namespace std;

int A[1010];

int main(){
  int n,z;
  cin>>n>>z;
  
  for(int i=1;i<=1000;i++){
    A[i]=i*i;
  }
  map<int,int> m;
  for(int i=1;i<=1000;i++){
    for(int j=1;j<=1000;j++){
      m[A[i]+A[j]]++;
    }
  }
  
  if(n>=3) cout<<"No"<<endl;
  else if(n==1){
    if(z>=2) cout<<"Yes"<<endl;
    else cout<<"No"<<endl;
  }
  else{
    if(m[z*z]>0) cout<<"Yes"<<endl;
    else cout<<"No"<<endl;
  }
  
  return 0;
}
0