結果

問題 No.1944 ∞
ユーザー とりゐとりゐ
提出日時 2022-05-20 21:33:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 200 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 102,420 KB
最終ジャッジ日時 2024-09-20 07:24:44
合計ジャッジ時間 2,659 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,568 KB
testcase_01 AC 35 ms
52,428 KB
testcase_02 AC 34 ms
52,840 KB
testcase_03 AC 33 ms
53,496 KB
testcase_04 AC 35 ms
52,116 KB
testcase_05 AC 35 ms
52,888 KB
testcase_06 AC 36 ms
52,768 KB
testcase_07 AC 39 ms
52,944 KB
testcase_08 AC 35 ms
52,756 KB
testcase_09 AC 33 ms
52,696 KB
testcase_10 AC 37 ms
52,488 KB
testcase_11 AC 34 ms
52,832 KB
testcase_12 AC 35 ms
52,168 KB
testcase_13 AC 35 ms
51,876 KB
testcase_14 AC 34 ms
53,316 KB
testcase_15 AC 76 ms
102,420 KB
testcase_16 AC 40 ms
61,972 KB
testcase_17 AC 39 ms
60,852 KB
testcase_18 AC 41 ms
61,060 KB
testcase_19 AC 38 ms
60,076 KB
testcase_20 AC 39 ms
61,620 KB
testcase_21 AC 41 ms
61,288 KB
testcase_22 AC 39 ms
59,848 KB
testcase_23 AC 38 ms
59,272 KB
testcase_24 AC 39 ms
60,896 KB
testcase_25 AC 39 ms
61,728 KB
testcase_26 AC 40 ms
60,980 KB
testcase_27 AC 40 ms
61,964 KB
testcase_28 AC 38 ms
60,412 KB
testcase_29 AC 37 ms
59,836 KB
testcase_30 AC 39 ms
61,188 KB
testcase_31 AC 40 ms
60,172 KB
testcase_32 AC 40 ms
61,024 KB
testcase_33 AC 69 ms
97,688 KB
testcase_34 AC 69 ms
96,224 KB
testcase_35 AC 70 ms
97,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,x,y=map(int,input().split())
a=list(map(int,input().split()))
d=x*x+y*y

s=sum(a)

if n==1:
  if d!=s*s:
    print('No')
    exit()
    
u=2*s-min(a)
if u*u<d:
  print('No')
  exit()
  
print('Yes')
0