結果
| 問題 | No.2022 Antilogarithm |
| コンテスト | |
| ユーザー |
harurun
|
| 提出日時 | 2021-09-20 10:00:39 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 109 bytes |
| 記録 | |
| コンパイル時間 | 854 ms |
| コンパイル使用メモリ | 84,704 KB |
| 実行使用メモリ | 137,300 KB |
| 最終ジャッジ日時 | 2026-04-02 16:26:56 |
| 合計ジャッジ時間 | 3,849 ms |
|
ジャッジサーバーID (参考情報) |
judge4_0 / judge5_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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