結果

問題 No.219 巨大数の概算
ユーザー Mao-betaMao-beta
提出日時 2024-08-10 20:55:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 884 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 78,976 KB
最終ジャッジ日時 2024-08-10 20:55:42
合計ジャッジ時間 8,866 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
78,080 KB
testcase_01 AC 125 ms
77,952 KB
testcase_02 AC 107 ms
78,848 KB
testcase_03 AC 110 ms
77,952 KB
testcase_04 WA -
testcase_05 AC 50 ms
55,808 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 47 ms
55,936 KB
testcase_10 AC 115 ms
78,976 KB
testcase_11 AC 105 ms
78,464 KB
testcase_12 AC 109 ms
78,080 KB
testcase_13 AC 127 ms
78,208 KB
testcase_14 AC 108 ms
78,208 KB
testcase_15 AC 113 ms
78,592 KB
testcase_16 AC 106 ms
77,952 KB
testcase_17 AC 112 ms
78,720 KB
testcase_18 AC 109 ms
78,208 KB
testcase_19 AC 107 ms
78,208 KB
testcase_20 AC 108 ms
78,080 KB
testcase_21 AC 111 ms
78,464 KB
testcase_22 AC 127 ms
77,952 KB
testcase_23 AC 105 ms
78,080 KB
testcase_24 AC 109 ms
78,720 KB
testcase_25 AC 105 ms
78,336 KB
testcase_26 AC 108 ms
78,592 KB
testcase_27 AC 109 ms
78,720 KB
testcase_28 WA -
testcase_29 AC 112 ms
78,208 KB
testcase_30 AC 107 ms
78,592 KB
testcase_31 AC 110 ms
77,952 KB
testcase_32 AC 108 ms
78,592 KB
testcase_33 AC 108 ms
78,208 KB
testcase_34 AC 124 ms
77,952 KB
testcase_35 AC 106 ms
78,208 KB
testcase_36 AC 108 ms
78,848 KB
testcase_37 AC 108 ms
77,824 KB
testcase_38 AC 108 ms
77,952 KB
testcase_39 AC 112 ms
78,208 KB
testcase_40 AC 116 ms
78,336 KB
testcase_41 AC 116 ms
78,208 KB
testcase_42 AC 108 ms
78,464 KB
testcase_43 AC 110 ms
78,336 KB
testcase_44 AC 116 ms
78,080 KB
testcase_45 AC 113 ms
78,464 KB
testcase_46 AC 116 ms
78,336 KB
testcase_47 AC 119 ms
78,592 KB
testcase_48 AC 128 ms
78,208 KB
testcase_49 AC 111 ms
78,464 KB
testcase_50 AC 106 ms
78,208 KB
testcase_51 AC 47 ms
56,192 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
        print(idx//10, idx%10, Z)



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