結果

問題 No.219 巨大数の概算
ユーザー lloyzlloyz
提出日時 2023-05-31 00:05:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 114 ms / 1,500 ms
コード長 248 bytes
コンパイル時間 475 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,928 KB
最終ジャッジ日時 2024-12-28 13:23:02
合計ジャッジ時間 9,053 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 51
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import log10
import sys
input = sys.stdin.readline

for _ in range(int(input())):
    a, b = map(int, input().split())
    c = b * log10(a)
    z = int(c)
    r = c - z
    n = int(10**(r + 1))
    x, y = divmod(n, 10)
    print(x, y, z)
0