結果

問題 No.1218 Something Like a Theorem
ユーザー zezero
提出日時 2020-09-04 21:36:57
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 607 bytes
コンパイル時間 536 ms
コンパイル使用メモリ 73,848 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-26 12:10:12
合計ジャッジ時間 1,100 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 2
other WA * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <utility>
#include <map>
using namespace std;
typedef long long ll;
#define rep(i,n) for (int i = 0; i < int(n);i++)

int main(){
  int n,z;
  cin >> n >> z;
  if (n >= 3) cout << "NO" << endl;
  else if (n == 2){
    z *= z;
    for (int x = 1; x <= 1000;x++){
      if (z-x*x >= 1){
        for (int tmp = 1; tmp*tmp <= z-x*x;tmp++){
          if (tmp * tmp == z-x*x) {
            cout << "YES" << endl;
            return 0;
          }
        }
      }
    }
  }
  else cout << "YES" << endl;
  
  return 0;
   

}
0