結果

問題 No.2022 Antilogarithm
ユーザー ohanaohana
提出日時 2023-10-02 14:25:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 101 bytes
コンパイル時間 560 ms
コンパイル使用メモリ 87,212 KB
実行使用メモリ 89,268 KB
最終ジャッジ日時 2023-10-02 14:25:37
合計ジャッジ時間 16,900 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 203 ms
88,940 KB
testcase_01 AC 204 ms
89,032 KB
testcase_02 AC 196 ms
88,772 KB
testcase_03 WA -
testcase_04 AC 222 ms
88,908 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 199 ms
89,040 KB
testcase_08 AC 201 ms
89,156 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 204 ms
89,224 KB
testcase_12 AC 201 ms
88,936 KB
testcase_13 AC 199 ms
88,920 KB
testcase_14 AC 195 ms
89,108 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 199 ms
89,060 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 209 ms
89,084 KB
testcase_22 AC 217 ms
88,884 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 199 ms
89,112 KB
testcase_44 AC 202 ms
89,148 KB
testcase_45 AC 203 ms
88,936 KB
testcase_46 AC 200 ms
89,056 KB
testcase_47 AC 214 ms
88,936 KB
testcase_48 AC 198 ms
89,164 KB
testcase_49 AC 202 ms
89,176 KB
testcase_50 AC 202 ms
89,044 KB
testcase_51 AC 203 ms
89,120 KB
testcase_52 AC 195 ms
88,936 KB
testcase_53 AC 200 ms
89,088 KB
testcase_54 AC 198 ms
89,112 KB
testcase_55 WA -
testcase_56 AC 208 ms
89,236 KB
testcase_57 AC 198 ms
89,112 KB
testcase_58 AC 198 ms
89,176 KB
testcase_59 AC 197 ms
89,136 KB
testcase_60 AC 198 ms
89,088 KB
testcase_61 WA -
testcase_62 AC 197 ms
89,160 KB
testcase_63 WA -
testcase_64 AC 195 ms
89,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
import decimal

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

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