結果
| 問題 | No.863 計算量 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-12-02 16:11:33 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 63 ms / 1,000 ms |
| + 430µs | |
| コード長 | 227 bytes |
| 記録 | |
| コンパイル時間 | 233 ms |
| コンパイル使用メモリ | 95,980 KB |
| 実行使用メモリ | 79,232 KB |
| 最終ジャッジ日時 | 2026-07-17 06:05:46 |
| 合計ジャッジ時間 | 2,650 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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()