結果
| 問題 |
No.2022 Antilogarithm
|
| コンテスト | |
| ユーザー |
👑 tatyam
|
| 提出日時 | 2022-07-29 21:33:07 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 168 bytes |
| コンパイル時間 | 157 ms |
| コンパイル使用メモリ | 82,256 KB |
| 実行使用メモリ | 80,392 KB |
| 最終ジャッジ日時 | 2024-07-19 13:18:01 |
| 合計ジャッジ時間 | 9,111 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 57 WA * 5 |
ソースコード
from decimal import *
getcontext().prec = 100
A, B = map(Decimal, input().split())
if (B * B).log10() - A.log10() * 2 > 1e-100:
print("Yes")
else:
print("No")
tatyam