結果
問題 | No.863 計算量 |
ユーザー |
![]() |
提出日時 | 2020-07-29 03:01:44 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 28 ms / 1,000 ms |
コード長 | 205 bytes |
コンパイル時間 | 77 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-06-28 21:14:32 |
合計ジャッジ時間 | 1,007 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 13 |
ソースコード
from math import log2A = int(input())B = int(input())t1 = (A / 5000) * 200000t2 = (A / (5000 ** 2)) * (200000 ** 2)if abs(1 - log2(B / t1)) < abs(1 - log2(B / t2)):print(1)else:print(2)