結果

問題 No.219 巨大数の概算
ユーザー rlangevinrlangevin
提出日時 2023-02-27 08:50:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 124 ms / 1,500 ms
コード長 219 bytes
コンパイル時間 2,016 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 77,376 KB
最終ジャッジ日時 2024-09-14 18:12:58
合計ジャッジ時間 11,037 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
76,980 KB
testcase_01 AC 119 ms
77,100 KB
testcase_02 AC 119 ms
76,936 KB
testcase_03 AC 120 ms
77,312 KB
testcase_04 AC 117 ms
76,948 KB
testcase_05 AC 40 ms
53,500 KB
testcase_06 AC 76 ms
72,024 KB
testcase_07 AC 40 ms
52,920 KB
testcase_08 AC 73 ms
70,284 KB
testcase_09 AC 40 ms
52,520 KB
testcase_10 AC 119 ms
77,000 KB
testcase_11 AC 121 ms
76,756 KB
testcase_12 AC 118 ms
77,356 KB
testcase_13 AC 118 ms
77,116 KB
testcase_14 AC 124 ms
76,896 KB
testcase_15 AC 120 ms
76,680 KB
testcase_16 AC 119 ms
76,920 KB
testcase_17 AC 118 ms
76,892 KB
testcase_18 AC 117 ms
77,272 KB
testcase_19 AC 118 ms
76,792 KB
testcase_20 AC 119 ms
76,672 KB
testcase_21 AC 117 ms
76,892 KB
testcase_22 AC 117 ms
77,200 KB
testcase_23 AC 124 ms
76,868 KB
testcase_24 AC 118 ms
76,660 KB
testcase_25 AC 117 ms
76,744 KB
testcase_26 AC 116 ms
76,908 KB
testcase_27 AC 119 ms
77,352 KB
testcase_28 AC 120 ms
77,152 KB
testcase_29 AC 119 ms
76,976 KB
testcase_30 AC 120 ms
77,124 KB
testcase_31 AC 120 ms
77,236 KB
testcase_32 AC 120 ms
76,892 KB
testcase_33 AC 121 ms
76,628 KB
testcase_34 AC 119 ms
76,852 KB
testcase_35 AC 124 ms
76,996 KB
testcase_36 AC 122 ms
77,160 KB
testcase_37 AC 118 ms
77,376 KB
testcase_38 AC 119 ms
76,812 KB
testcase_39 AC 118 ms
76,880 KB
testcase_40 AC 120 ms
76,972 KB
testcase_41 AC 118 ms
77,256 KB
testcase_42 AC 120 ms
76,804 KB
testcase_43 AC 119 ms
77,028 KB
testcase_44 AC 120 ms
76,944 KB
testcase_45 AC 119 ms
76,952 KB
testcase_46 AC 120 ms
77,316 KB
testcase_47 AC 118 ms
77,304 KB
testcase_48 AC 117 ms
76,692 KB
testcase_49 AC 121 ms
76,884 KB
testcase_50 AC 119 ms
77,260 KB
testcase_51 AC 40 ms
53,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import *

N = int(input())
for i in range(N):
    A, B = map(int, input().split())
    Z = B * log10(A)
    r = Z - int(Z)
    Z = int(Z)
    n = int(10 ** r * 10)
    X, Y = n // 10, n % 10
    print(X, Y, Z)
0