結果
| 問題 | No.2022 Antilogarithm |
| コンテスト | |
| ユーザー |
harurun
|
| 提出日時 | 2021-09-20 10:00:39 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 109 bytes |
| 記録 | |
| コンパイル時間 | 242 ms |
| コンパイル使用メモリ | 95,340 KB |
| 実行使用メモリ | 79,104 KB |
| 最終ジャッジ日時 | 2026-08-18 13:53:44 |
| 合計ジャッジ時間 | 8,019 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 40 WA * 22 |
ソースコード
from math import log2
A,B=map(int,input().split())
if 2*log2(A)<log2(B*B):
print("Yes")
else:
print("No")
harurun