結果
| 問題 |
No.2022 Antilogarithm
|
| コンテスト | |
| ユーザー |
harurun
|
| 提出日時 | 2021-09-20 10:00:39 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 109 bytes |
| コンパイル時間 | 144 ms |
| コンパイル使用メモリ | 81,920 KB |
| 実行使用メモリ | 52,352 KB |
| 最終ジャッジ日時 | 2024-07-19 11:37:36 |
| 合計ジャッジ時間 | 3,874 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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