結果

問題 No.1944 ∞
ユーザー JF1HNLJF1HNL
提出日時 2022-05-22 20:14:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 444 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 117,120 KB
最終ジャッジ日時 2024-09-20 12:51:32
合計ジャッジ時間 3,000 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,584 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 39 ms
52,096 KB
testcase_04 AC 39 ms
51,712 KB
testcase_05 AC 38 ms
51,584 KB
testcase_06 AC 39 ms
51,840 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 39 ms
51,584 KB
testcase_10 WA -
testcase_11 AC 39 ms
51,584 KB
testcase_12 AC 39 ms
51,968 KB
testcase_13 AC 40 ms
51,712 KB
testcase_14 WA -
testcase_15 AC 102 ms
117,120 KB
testcase_16 AC 48 ms
62,464 KB
testcase_17 AC 45 ms
60,800 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 47 ms
61,568 KB
testcase_21 WA -
testcase_22 AC 44 ms
59,904 KB
testcase_23 AC 43 ms
59,264 KB
testcase_24 AC 44 ms
59,648 KB
testcase_25 AC 47 ms
61,696 KB
testcase_26 AC 47 ms
61,824 KB
testcase_27 AC 48 ms
61,312 KB
testcase_28 AC 48 ms
60,288 KB
testcase_29 AC 47 ms
58,880 KB
testcase_30 AC 48 ms
61,312 KB
testcase_31 AC 45 ms
60,160 KB
testcase_32 AC 46 ms
61,056 KB
testcase_33 AC 90 ms
110,976 KB
testcase_34 AC 90 ms
111,104 KB
testcase_35 AC 92 ms
110,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, x, y = list(map(int, input().split()))
ri = list(map(int, input().split()))

def debug(*e):
  if "localdebug" in globals():
    print("debug", *e)

if n == 1:
  print("Yes" if x ** 2 + y ** 2 == ri[0] else "No")
  exit()

ri = [2 * val if index != 0 else val for index, val in enumerate(ri)]

sumri = sum(ri)

debug(x ** 2 + y ** 2, sumri ** 2)

smallri = 2 * ri[0] - sumri

print("Yes" if smallri <= x ** 2 + y ** 2 <= sumri ** 2 else "No")
0