結果
| 問題 |
No.2022 Antilogarithm
|
| コンテスト | |
| ユーザー |
shika_126
|
| 提出日時 | 2022-08-16 11:34:21 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 118 bytes |
| コンパイル時間 | 92 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 24,048 KB |
| 最終ジャッジ日時 | 2024-10-03 03:34:57 |
| 合計ジャッジ時間 | 4,189 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | RE * 5 TLE * 1 -- * 56 |
ソースコード
from math import log2
A,B = map(int,input().split())
if 2*log2(A) < log2(B**B):
print('Yes')
else:
print('No')
shika_126