結果
問題 |
No.2022 Antilogarithm
|
ユーザー |
![]() |
提出日時 | 2022-07-29 22:46:47 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 128 bytes |
コンパイル時間 | 166 ms |
コンパイル使用メモリ | 82,460 KB |
実行使用メモリ | 54,404 KB |
最終ジャッジ日時 | 2024-07-19 16:00:54 |
合計ジャッジ時間 | 4,025 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 40 WA * 22 |
ソースコード
from math import log2 a,b=map(int,input().split()) t=2*log2(a) t1=log2(b**2) if t < t1: print('Yes') else: print('No')