結果

問題 No.219 巨大数の概算
ユーザー Konton7Konton7
提出日時 2019-10-03 21:39:26
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 120 ms / 1,500 ms
コード長 362 bytes
コンパイル時間 126 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-10-03 06:38:58
合計ジャッジ時間 7,751 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 51
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
import math
log_list = [ math.log(i/10, 10) for i in range(11,101) ]

def compute(x, y):
    a = y * math.log(x, 10)
    z = int(a)
    a -= z
    b = bisect.bisect_right(log_list,a)
    x = b // 10 + 1
    y = b % 10
    print(x, y, z)
    return

n = int(input())
for _ in range(n):
    a, b = [ int(v) for v in input().split() ]
    compute(a,b)
0