結果

問題 No.757 チャンパーノウン定数 (2)
ユーザー PachicobuePachicobue
提出日時 2018-12-05 16:40:53
言語 PyPy3
(7.3.15)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 565 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 71,244 KB
最終ジャッジ日時 2024-07-19 06:36:19
合計ジャッジ時間 4,129 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
56,064 KB
testcase_01 AC 36 ms
52,480 KB
testcase_02 AC 38 ms
54,912 KB
testcase_03 AC 36 ms
52,992 KB
testcase_04 AC 40 ms
56,192 KB
testcase_05 AC 42 ms
57,728 KB
testcase_06 AC 45 ms
60,772 KB
testcase_07 AC 38 ms
54,016 KB
testcase_08 AC 49 ms
61,056 KB
testcase_09 AC 46 ms
60,416 KB
testcase_10 AC 38 ms
51,968 KB
testcase_11 AC 38 ms
54,912 KB
testcase_12 AC 36 ms
52,992 KB
testcase_13 AC 41 ms
55,936 KB
testcase_14 AC 44 ms
57,728 KB
testcase_15 AC 47 ms
59,904 KB
testcase_16 AC 42 ms
53,760 KB
testcase_17 AC 47 ms
61,184 KB
testcase_18 AC 47 ms
60,160 KB
testcase_19 AC 38 ms
52,480 KB
testcase_20 AC 41 ms
54,656 KB
testcase_21 AC 38 ms
52,736 KB
testcase_22 AC 43 ms
55,680 KB
testcase_23 AC 43 ms
58,112 KB
testcase_24 AC 45 ms
60,160 KB
testcase_25 AC 38 ms
53,632 KB
testcase_26 AC 47 ms
61,184 KB
testcase_27 AC 47 ms
59,776 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 AC 48 ms
61,952 KB
testcase_31 AC 42 ms
56,320 KB
testcase_32 AC 46 ms
61,312 KB
testcase_33 RE -
testcase_34 RE -
testcase_35 AC 39 ms
55,424 KB
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 AC 50 ms
62,848 KB
testcase_43 AC 69 ms
70,912 KB
testcase_44 RE -
testcase_45 RE -
testcase_46 AC 63 ms
71,244 KB
testcase_47 RE -
testcase_48 RE -
testcase_49 RE -
testcase_50 AC 38 ms
52,224 KB
testcase_51 AC 37 ms
52,096 KB
testcase_52 AC 37 ms
53,376 KB
testcase_53 AC 35 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def power(p,n):
    if n == 0:
        return 1
    elif n%2==0:
        return power(p*p,n/2)
    else:
        return power(p,n-1)*p

B = int(input())
D = int(input(), B)
if D < B:
    print(D)
    exit(0)
inf = -1
sup = 100000
while sup-inf > 1:
    mid = (sup+inf)//2
    v = mid*power(B, mid)-(power(B,mid)-1)//(B-1)
    if v < D:
        inf = mid
    else:
        sup = mid


# print(inf,sup)
D -= inf*power(B,inf)-(power(B,inf)-1)//(B-1)
D -= 1
num = D//sup
d = D%sup
NUM = power(B,inf)+num
# print(NUM)
NUM //= power(B,inf-d)
# print("d=",d)
print(NUM%B)
0