結果
| 問題 |
No.1944 ∞
|
| コンテスト | |
| ユーザー |
milanis48663220
|
| 提出日時 | 2022-05-20 21:35:22 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 204 bytes |
| コンパイル時間 | 88 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 30,768 KB |
| 最終ジャッジ日時 | 2024-09-20 07:27:31 |
| 合計ジャッジ時間 | 2,373 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 32 WA * 4 |
ソースコード
n, x, y = map(int, input().split())
r = list(map(int, input().split()))
r_sum = r[0]+sum(r[1:])*2
l = max(0, r[0]-sum(r[1:])*2)
if l*l <= x*x+y*y <= r_sum*r_sum:
print("Yes")
else:
print("No")
milanis48663220