結果

問題 No.757 チャンパーノウン定数 (2)
ユーザー omochanalomochanal
提出日時 2018-12-19 18:13:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,772 ms / 2,000 ms
コード長 679 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 93,108 KB
最終ジャッジ日時 2024-09-25 08:05:08
合計ジャッジ時間 16,318 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,884 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 38 ms
52,480 KB
testcase_03 AC 37 ms
52,224 KB
testcase_04 AC 38 ms
53,376 KB
testcase_05 AC 41 ms
52,736 KB
testcase_06 AC 39 ms
53,376 KB
testcase_07 AC 37 ms
51,840 KB
testcase_08 AC 39 ms
54,528 KB
testcase_09 AC 39 ms
54,272 KB
testcase_10 AC 37 ms
52,096 KB
testcase_11 AC 38 ms
53,120 KB
testcase_12 AC 37 ms
51,968 KB
testcase_13 AC 39 ms
53,120 KB
testcase_14 AC 38 ms
52,736 KB
testcase_15 AC 39 ms
53,248 KB
testcase_16 AC 37 ms
52,480 KB
testcase_17 AC 39 ms
54,400 KB
testcase_18 AC 39 ms
54,144 KB
testcase_19 AC 37 ms
51,840 KB
testcase_20 AC 38 ms
53,128 KB
testcase_21 AC 37 ms
52,136 KB
testcase_22 AC 39 ms
52,864 KB
testcase_23 AC 38 ms
53,376 KB
testcase_24 AC 39 ms
53,248 KB
testcase_25 AC 38 ms
52,480 KB
testcase_26 AC 39 ms
54,784 KB
testcase_27 AC 40 ms
54,528 KB
testcase_28 AC 1,201 ms
82,816 KB
testcase_29 AC 852 ms
80,648 KB
testcase_30 AC 48 ms
70,484 KB
testcase_31 AC 67 ms
75,032 KB
testcase_32 AC 40 ms
55,040 KB
testcase_33 AC 69 ms
75,392 KB
testcase_34 AC 314 ms
75,688 KB
testcase_35 AC 60 ms
75,140 KB
testcase_36 AC 55 ms
75,264 KB
testcase_37 AC 726 ms
78,848 KB
testcase_38 AC 996 ms
81,780 KB
testcase_39 AC 1,315 ms
84,860 KB
testcase_40 AC 1,772 ms
93,108 KB
testcase_41 AC 820 ms
78,032 KB
testcase_42 AC 335 ms
75,776 KB
testcase_43 AC 800 ms
76,952 KB
testcase_44 AC 801 ms
78,380 KB
testcase_45 AC 584 ms
76,372 KB
testcase_46 AC 563 ms
75,680 KB
testcase_47 AC 701 ms
77,524 KB
testcase_48 AC 424 ms
75,904 KB
testcase_49 AC 650 ms
77,184 KB
testcase_50 AC 38 ms
54,400 KB
testcase_51 AC 39 ms
53,376 KB
testcase_52 AC 38 ms
51,968 KB
testcase_53 AC 38 ms
52,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Base_10_to_n(X, n, R):
    if X == n ** (R + 1):
        return 1
    X = X // (n ** R)
    return X % n

def Base_n_to_10(X,n):
    out = 0
    tmp = 1
    for i in range(1,len(str(X))+1):
        out += int(X[-i])*tmp
        tmp *= n
    return out#int out

def f(l, B):
    return ((l * B - l - 1) * B ** l + 1) // (B - 1)

B = input()
N = input()
B = int(B)

N = Base_n_to_10(N, B) - 1

l = 0
lv = 0
rv = 100000

while rv - lv > 1:
    m = (lv + rv) // 2
    if f(m, B) < N:
        lv = m
    else:
        rv = m

l = lv
bound = f(l, B)

N -= bound
Q = N // (l + 1) + B ** l
R = N % (l + 1)

# print(N, Q, R, l, bound)
print(Base_10_to_n(Q, B, l - R))

# print(Q, R)

0