結果
問題 | No.2022 Antilogarithm |
ユーザー |
![]() |
提出日時 | 2022-07-29 21:35:02 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 131 ms / 2,000 ms |
コード長 | 167 bytes |
コンパイル時間 | 163 ms |
コンパイル使用メモリ | 81,664 KB |
実行使用メモリ | 80,128 KB |
最終ジャッジ日時 | 2024-07-19 13:26:38 |
合計ジャッジ時間 | 10,357 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 62 |
ソースコード
from decimal import *getcontext().prec = 200A, B = map(Decimal, input().split())if (B * B).log10() - A.log10() * 2 > 1e-50:print("Yes")else:print("No")