結果

問題 No.863 計算量
ユーザー c-yan
提出日時 2020-07-29 03:00:33
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 205 bytes
コンパイル時間 76 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-28 21:14:31
合計ジャッジ時間 1,316 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 RE * 2
other AC * 5 RE * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import log2

A = int(input())
B = int(input())

t1 = (A / 5000) * 200000
t2 = (A / (5000 ** 2)) * (200000 ** 2)

if abs(1 - log2(B / t1)) < abs(1 - log2(B / t2)):
    pritn(1)
else:
    print(2)
0