結果

問題 No.219 巨大数の概算
ユーザー Mao-betaMao-beta
提出日時 2024-08-20 10:38:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 136 ms / 1,500 ms
コード長 923 bytes
コンパイル時間 506 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 78,788 KB
最終ジャッジ日時 2024-08-20 10:39:02
合計ジャッジ時間 10,003 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
78,232 KB
testcase_01 AC 109 ms
77,844 KB
testcase_02 AC 109 ms
78,788 KB
testcase_03 AC 112 ms
78,176 KB
testcase_04 AC 99 ms
78,068 KB
testcase_05 AC 49 ms
57,328 KB
testcase_06 AC 76 ms
72,468 KB
testcase_07 AC 49 ms
56,332 KB
testcase_08 AC 76 ms
73,760 KB
testcase_09 AC 49 ms
56,528 KB
testcase_10 AC 111 ms
78,548 KB
testcase_11 AC 109 ms
78,180 KB
testcase_12 AC 107 ms
78,104 KB
testcase_13 AC 136 ms
78,232 KB
testcase_14 AC 110 ms
78,096 KB
testcase_15 AC 112 ms
78,276 KB
testcase_16 AC 105 ms
78,024 KB
testcase_17 AC 109 ms
78,364 KB
testcase_18 AC 106 ms
78,192 KB
testcase_19 AC 106 ms
78,456 KB
testcase_20 AC 106 ms
78,664 KB
testcase_21 AC 109 ms
78,332 KB
testcase_22 AC 109 ms
78,104 KB
testcase_23 AC 105 ms
78,404 KB
testcase_24 AC 111 ms
78,188 KB
testcase_25 AC 107 ms
78,064 KB
testcase_26 AC 108 ms
78,300 KB
testcase_27 AC 109 ms
78,184 KB
testcase_28 AC 106 ms
78,124 KB
testcase_29 AC 106 ms
78,416 KB
testcase_30 AC 105 ms
78,196 KB
testcase_31 AC 104 ms
78,192 KB
testcase_32 AC 105 ms
78,100 KB
testcase_33 AC 108 ms
78,256 KB
testcase_34 AC 105 ms
78,496 KB
testcase_35 AC 105 ms
78,232 KB
testcase_36 AC 110 ms
78,528 KB
testcase_37 AC 107 ms
78,028 KB
testcase_38 AC 106 ms
78,608 KB
testcase_39 AC 108 ms
78,540 KB
testcase_40 AC 112 ms
78,044 KB
testcase_41 AC 105 ms
78,244 KB
testcase_42 AC 107 ms
78,064 KB
testcase_43 AC 111 ms
78,104 KB
testcase_44 AC 105 ms
78,276 KB
testcase_45 AC 105 ms
78,260 KB
testcase_46 AC 110 ms
78,180 KB
testcase_47 AC 109 ms
77,868 KB
testcase_48 AC 109 ms
78,480 KB
testcase_49 AC 109 ms
78,336 KB
testcase_50 AC 105 ms
78,276 KB
testcase_51 AC 48 ms
57,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math
import bisect
from heapq import heapify, heappop, heappush
from collections import deque, defaultdict, Counter
from functools import lru_cache
from itertools import accumulate, combinations, permutations

sys.setrecursionlimit(1000000)
MOD = 10 ** 9 + 7
MOD99 = 998244353

input = lambda: sys.stdin.readline().strip()
NI = lambda: int(input())
NMI = lambda: map(int, input().split())
NLI = lambda: list(NMI())
SI = lambda: input()
SMI = lambda: input().split()
SLI = lambda: list(SMI())
EI = lambda m: [NLI() for _ in range(m)]


def main():
    N = NI()
    P = [math.log10(i/10) if i >= 10 else 0 for i in range(101)]

    for _ in range(N):
        A, B = NMI()
        x = B * math.log10(A)
        Z = math.floor(x)
        XY = x - Z
        idx = bisect.bisect_left(P, XY)-1
        if idx == -1:
            idx = 10
        print(idx//10, idx%10, Z)



if __name__ == "__main__":
    main()
0