結果

問題 No.1944 ∞
ユーザー keisuke6keisuke6
提出日時 2022-05-20 22:02:55
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 545 bytes
コンパイル時間 1,631 ms
コンパイル使用メモリ 170,304 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-20 08:11:29
合計ジャッジ時間 2,977 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
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 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 WA -
testcase_15 AC 64 ms
5,376 KB
testcase_16 AC 6 ms
5,376 KB
testcase_17 AC 5 ms
5,376 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 4 ms
5,376 KB
testcase_21 WA -
testcase_22 AC 4 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 3 ms
5,376 KB
testcase_25 AC 5 ms
5,376 KB
testcase_26 AC 5 ms
5,376 KB
testcase_27 AC 5 ms
5,376 KB
testcase_28 AC 4 ms
5,376 KB
testcase_29 AC 3 ms
5,376 KB
testcase_30 AC 6 ms
5,376 KB
testcase_31 AC 4 ms
5,376 KB
testcase_32 AC 4 ms
5,376 KB
testcase_33 AC 33 ms
5,376 KB
testcase_34 AC 32 ms
5,376 KB
testcase_35 AC 32 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define int long long
signed main(){
  int N,X,Y;
  cin>>N>>X>>Y;
  int sum = 0;
  vector<int> A(N);
  for(int i=0;i<N;i++){
      cin>>A[i];
      sum += A[i];
      if(i != 0) sum += A[i];
  }
  int a = A[0]-(sum-A[0]);
  if((((X*X+Y*Y)%a != 0 && (X*X+Y*Y)/a <= a) || (X*X+Y*Y)/a < a) && sum-A[0] < A[0]){
      cout<<"No"<<endl;
      return 0;
  }
  else if(((X*X+Y*Y)%sum != 0 && (X*X+Y*Y)/sum >= sum) || (X*X+Y*Y)/sum > sum){
      cout<<"No"<<endl;
      return 0;
  }
  cout<<"Yes"<<endl;
}
0