結果

問題 No.863 計算量
ユーザー c-yanc-yan
提出日時 2020-07-29 03:00:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 205 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 10,496 KB
実行使用メモリ 8,076 KB
最終ジャッジ日時 2023-09-11 07:02:52
合計ジャッジ時間 1,844 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 16 ms
7,928 KB
testcase_09 AC 16 ms
7,844 KB
testcase_10 AC 16 ms
7,876 KB
testcase_11 AC 16 ms
7,888 KB
testcase_12 AC 16 ms
7,960 KB
testcase_13 RE -
testcase_14 AC 16 ms
7,848 KB
testcase_15 RE -
権限があれば一括ダウンロードができます

ソースコード

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