結果
| 問題 | No.2022 Antilogarithm |
| コンテスト | |
| ユーザー |
👑 tatyam
|
| 提出日時 | 2022-07-29 21:33:07 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 168 bytes |
| 記録 | |
| コンパイル時間 | 353 ms |
| コンパイル使用メモリ | 84,904 KB |
| 実行使用メモリ | 169,888 KB |
| 最終ジャッジ日時 | 2026-04-02 16:50:33 |
| 合計ジャッジ時間 | 9,538 ms |
|
ジャッジサーバーID (参考情報) |
judge5_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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