結果

問題 No.219 巨大数の概算
ユーザー 👑 KazunKazun
提出日時 2021-02-10 03:45:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 104 ms / 1,500 ms
コード長 309 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 79,568 KB
最終ジャッジ日時 2024-07-07 12:41:54
合計ジャッジ時間 7,728 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 51
権限があれば一括ダウンロードができます

ソースコード

diff #

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

N=int(input())
X=[]
for _ in range(N):
    A,B=map(int,input().split())
    L=log10(A)*B
    s,t=str(L).split(".")
    t="0."+t
    u=str(pow(10,float(t)))+".0"

    X.append((u[0],u[2],s))

for a,b,c in X:
    print(a,b,c)
0