結果

問題 No.219 巨大数の概算
ユーザー roiti46roiti46
提出日時 2015-05-29 22:39:00
言語 Python2
(2.7.18)
結果
AC  
実行時間 61 ms / 1,500 ms
コード長 217 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 6,784 KB
最終ジャッジ日時 2024-07-18 10:40:22
合計ジャッジ時間 4,823 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 51
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import log10
N = int(raw_input())
for loop in xrange(N):
    A, B = map(int, raw_input().split())
    t = int(B * log10(A))
    a = "%.16f" % 10 ** (B * log10(A) - t)
    x, y = a[0], a[2]
    print x, y, t
0