結果

問題 No.219 巨大数の概算
ユーザー kohei2019kohei2019
提出日時 2022-01-05 19:38:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 253 ms / 1,500 ms
コード長 773 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,076 KB
実行使用メモリ 80,824 KB
最終ジャッジ日時 2024-11-06 06:32:53
合計ジャッジ時間 14,263 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 243 ms
80,144 KB
testcase_01 AC 244 ms
79,916 KB
testcase_02 AC 238 ms
79,628 KB
testcase_03 AC 249 ms
80,576 KB
testcase_04 AC 227 ms
79,860 KB
testcase_05 AC 39 ms
53,568 KB
testcase_06 AC 120 ms
77,028 KB
testcase_07 AC 39 ms
53,784 KB
testcase_08 AC 117 ms
77,652 KB
testcase_09 AC 38 ms
53,312 KB
testcase_10 AC 253 ms
80,432 KB
testcase_11 AC 242 ms
79,784 KB
testcase_12 AC 240 ms
80,424 KB
testcase_13 AC 235 ms
80,192 KB
testcase_14 AC 236 ms
79,852 KB
testcase_15 AC 240 ms
80,500 KB
testcase_16 AC 242 ms
80,752 KB
testcase_17 AC 243 ms
80,132 KB
testcase_18 AC 237 ms
80,148 KB
testcase_19 AC 247 ms
80,256 KB
testcase_20 AC 234 ms
79,632 KB
testcase_21 AC 240 ms
79,776 KB
testcase_22 AC 231 ms
80,120 KB
testcase_23 AC 237 ms
80,564 KB
testcase_24 AC 246 ms
80,076 KB
testcase_25 AC 228 ms
79,532 KB
testcase_26 AC 235 ms
80,132 KB
testcase_27 AC 242 ms
80,824 KB
testcase_28 AC 243 ms
80,380 KB
testcase_29 AC 247 ms
80,256 KB
testcase_30 AC 247 ms
79,952 KB
testcase_31 AC 230 ms
79,728 KB
testcase_32 AC 235 ms
79,908 KB
testcase_33 AC 219 ms
79,300 KB
testcase_34 AC 220 ms
79,736 KB
testcase_35 AC 247 ms
80,272 KB
testcase_36 AC 236 ms
79,768 KB
testcase_37 AC 235 ms
79,828 KB
testcase_38 AC 241 ms
80,076 KB
testcase_39 AC 230 ms
79,732 KB
testcase_40 AC 238 ms
80,200 KB
testcase_41 AC 242 ms
80,556 KB
testcase_42 AC 218 ms
79,312 KB
testcase_43 AC 242 ms
80,212 KB
testcase_44 AC 223 ms
79,252 KB
testcase_45 AC 235 ms
80,012 KB
testcase_46 AC 219 ms
79,308 KB
testcase_47 AC 240 ms
80,264 KB
testcase_48 AC 233 ms
79,580 KB
testcase_49 AC 247 ms
80,004 KB
testcase_50 AC 246 ms
80,352 KB
testcase_51 AC 39 ms
52,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
lsAB = [list(map(int,input().split())) for i in range(N)]
def Pow10(a,n):#繰り返し二乗法
    if n==0:
        return 1,0
    if n==1:
        j = 0
        while a >= 10**j:
            j += 1
        j -= 1
        a /= 10**j
        return a,j
    if n & 1:
        ab,c = Pow10(a,n-1)
        j = 0
        while a >= 10**j:
            j += 1
        j -= 1
        a /= 10**j
        b = a*ab
        jb = 0
        while b >= 10**jb:
            jb += 1
        jb -= 1
        b /= 10**jb
        return b,c+j+jb
    a,c = Pow10(a,n>>1)
    b = a*a
    j = 0
    while b >= 10**j:
        j += 1
    j -= 1
    b /= 10**j
    return b,c+c+j

for i in range(N):
    a,b = Pow10(lsAB[i][0],lsAB[i][1])
    sa = str(a)
    print(sa[0],sa[2],b)

0