結果
| 問題 |
No.1944 ∞
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-10-01 17:10:09 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 176 bytes |
| コンパイル時間 | 95 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 31,024 KB |
| 最終ジャッジ日時 | 2024-12-23 23:25:04 |
| 合計ジャッジ時間 | 3,173 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 36 |
ソースコード
n,x,y=list(map(int,input().split()))
r=list(map(int,input().split()))
sum=0
for i in r:
sum+=i
sum+=r[n]
if (sum**2)>=(x**2)+(y**2):
print("Yes")
else:
print("No")