結果

問題 No.2022 Antilogarithm
ユーザー ohanaohana
提出日時 2023-10-02 14:25:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 101 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 81,844 KB
実行使用メモリ 80,688 KB
最終ジャッジ日時 2024-07-26 13:44:43
合計ジャッジ時間 9,469 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
80,260 KB
testcase_01 AC 114 ms
79,920 KB
testcase_02 AC 116 ms
79,800 KB
testcase_03 WA -
testcase_04 AC 112 ms
80,172 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 112 ms
80,292 KB
testcase_08 AC 115 ms
80,056 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 113 ms
79,920 KB
testcase_12 AC 114 ms
80,332 KB
testcase_13 AC 112 ms
80,160 KB
testcase_14 AC 114 ms
80,064 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 112 ms
80,084 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 112 ms
80,140 KB
testcase_22 AC 114 ms
80,052 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 112 ms
80,168 KB
testcase_44 AC 111 ms
80,152 KB
testcase_45 AC 112 ms
80,268 KB
testcase_46 AC 114 ms
80,220 KB
testcase_47 AC 114 ms
80,188 KB
testcase_48 AC 115 ms
79,996 KB
testcase_49 AC 111 ms
80,284 KB
testcase_50 AC 111 ms
80,004 KB
testcase_51 AC 112 ms
80,208 KB
testcase_52 AC 113 ms
80,304 KB
testcase_53 AC 113 ms
80,244 KB
testcase_54 AC 113 ms
80,360 KB
testcase_55 WA -
testcase_56 AC 113 ms
80,252 KB
testcase_57 AC 112 ms
80,156 KB
testcase_58 AC 114 ms
79,924 KB
testcase_59 AC 111 ms
80,140 KB
testcase_60 AC 115 ms
80,152 KB
testcase_61 WA -
testcase_62 AC 113 ms
80,060 KB
testcase_63 WA -
testcase_64 AC 113 ms
80,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
import decimal

a, b = map(int, input().split())

print("Yes" if 2 * a < b**2 else "No")
0