結果
| 問題 | No.863 計算量 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-12-02 16:11:33 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 40 ms / 1,000 ms |
| コード長 | 227 bytes |
| 記録 | |
| コンパイル時間 | 330 ms |
| コンパイル使用メモリ | 82,060 KB |
| 実行使用メモリ | 54,164 KB |
| 最終ジャッジ日時 | 2025-12-02 16:11:35 |
| 合計ジャッジ時間 | 2,082 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 13 |
ソースコード
import sys
from math import log
def input(): return sys.stdin.readline().rstrip('\n')
def main():
a = int(input())
b = int(input())
print(round(log(b/a)/log(200000/5000)))
if __name__ == '__main__':
main()