結果

問題 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
79,136 KB
testcase_01 AC 96 ms
79,024 KB
testcase_02 AC 100 ms
79,328 KB
testcase_03 AC 97 ms
78,776 KB
testcase_04 AC 78 ms
78,988 KB
testcase_05 AC 33 ms
53,304 KB
testcase_06 AC 52 ms
66,952 KB
testcase_07 AC 34 ms
53,388 KB
testcase_08 AC 51 ms
68,524 KB
testcase_09 AC 34 ms
53,260 KB
testcase_10 AC 93 ms
79,308 KB
testcase_11 AC 93 ms
79,112 KB
testcase_12 AC 91 ms
79,208 KB
testcase_13 AC 96 ms
79,124 KB
testcase_14 AC 92 ms
78,768 KB
testcase_15 AC 92 ms
79,200 KB
testcase_16 AC 94 ms
79,116 KB
testcase_17 AC 94 ms
79,136 KB
testcase_18 AC 93 ms
79,148 KB
testcase_19 AC 95 ms
78,980 KB
testcase_20 AC 94 ms
79,320 KB
testcase_21 AC 101 ms
79,136 KB
testcase_22 AC 95 ms
78,904 KB
testcase_23 AC 96 ms
78,768 KB
testcase_24 AC 96 ms
79,568 KB
testcase_25 AC 97 ms
79,104 KB
testcase_26 AC 101 ms
79,524 KB
testcase_27 AC 97 ms
79,116 KB
testcase_28 AC 93 ms
79,208 KB
testcase_29 AC 98 ms
79,212 KB
testcase_30 AC 97 ms
78,700 KB
testcase_31 AC 96 ms
78,768 KB
testcase_32 AC 95 ms
78,772 KB
testcase_33 AC 93 ms
79,100 KB
testcase_34 AC 93 ms
79,092 KB
testcase_35 AC 93 ms
79,152 KB
testcase_36 AC 96 ms
78,824 KB
testcase_37 AC 99 ms
79,280 KB
testcase_38 AC 95 ms
79,204 KB
testcase_39 AC 94 ms
79,504 KB
testcase_40 AC 93 ms
79,256 KB
testcase_41 AC 92 ms
79,228 KB
testcase_42 AC 93 ms
79,148 KB
testcase_43 AC 104 ms
79,192 KB
testcase_44 AC 96 ms
79,180 KB
testcase_45 AC 98 ms
79,184 KB
testcase_46 AC 94 ms
79,132 KB
testcase_47 AC 93 ms
79,140 KB
testcase_48 AC 94 ms
78,896 KB
testcase_49 AC 96 ms
79,100 KB
testcase_50 AC 93 ms
79,144 KB
testcase_51 AC 33 ms
52,748 KB
権限があれば一括ダウンロードができます

ソースコード

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