結果
問題 | No.1944 ∞ |
ユーザー | rogi52 |
提出日時 | 2022-05-20 21:38:10 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 666 bytes |
コンパイル時間 | 2,053 ms |
コンパイル使用メモリ | 204,328 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-20 07:32:53 |
合計ジャッジ時間 | 3,082 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | WA | - |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 3 ms
5,376 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | AC | 2 ms
5,376 KB |
testcase_25 | AC | 3 ms
5,376 KB |
testcase_26 | AC | 2 ms
5,376 KB |
testcase_27 | AC | 2 ms
5,376 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 3 ms
5,376 KB |
testcase_31 | AC | 2 ms
5,376 KB |
testcase_32 | AC | 3 ms
5,376 KB |
testcase_33 | WA | - |
testcase_34 | AC | 13 ms
5,376 KB |
testcase_35 | AC | 13 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i = 0; i < (n); i++) using namespace std; typedef long long ll; int main(){ cin.tie(0); ios::sync_with_stdio(0); ll N,X,Y; cin >> N >> X >> Y; vector<ll> R(N); rep(i,N) cin >> R[i]; ll XY = X * X + Y * Y; if(N == 1 && XY != R[0] * R[0]) { cout << -1 << endl; } else { ll ma = accumulate(R.begin(), R.end(), 0LL) * 2 - *min_element(R.begin(), R.end()); ll mi = max(0LL, *min_element(R.begin(), R.end()) - (accumulate(R.begin(), R.end(), 0LL) - *min_element(R.begin(), R.end())) * 2); cout << (mi <= XY && XY <= ma ? "Yes" : "No") << endl; } }