結果
| 問題 | No.2022 Antilogarithm |
| コンテスト | |
| ユーザー |
harurun
|
| 提出日時 | 2021-09-20 10:25:25 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 110 bytes |
| 記録 | |
| コンパイル時間 | 1,188 ms |
| コンパイル使用メモリ | 20,824 KB |
| 実行使用メモリ | 36,148 KB |
| 最終ジャッジ日時 | 2026-04-02 16:27:11 |
| 合計ジャッジ時間 | 10,308 ms |
|
ジャッジサーバーID (参考情報) |
judge4_0 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 50 WA * 12 |
ソースコード
from math import log2
A,B=map(int,input().split())
if log2(A*A)<log2(B*B):
print("Yes")
else:
print("No")
harurun