結果

問題 No.757 チャンパーノウン定数 (2)
ユーザー omochanalomochanal
提出日時 2018-12-19 18:07:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 693 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 44,744 KB
最終ジャッジ日時 2024-09-25 08:03:43
合計ジャッジ時間 42,030 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 501 ms
44,108 KB
testcase_01 AC 517 ms
43,728 KB
testcase_02 AC 509 ms
43,944 KB
testcase_03 AC 501 ms
43,732 KB
testcase_04 AC 492 ms
43,988 KB
testcase_05 AC 489 ms
43,984 KB
testcase_06 AC 491 ms
43,596 KB
testcase_07 AC 484 ms
43,856 KB
testcase_08 AC 485 ms
43,728 KB
testcase_09 AC 483 ms
43,984 KB
testcase_10 AC 496 ms
43,856 KB
testcase_11 AC 488 ms
43,988 KB
testcase_12 AC 503 ms
43,852 KB
testcase_13 AC 497 ms
43,728 KB
testcase_14 AC 490 ms
43,984 KB
testcase_15 AC 490 ms
43,724 KB
testcase_16 AC 495 ms
43,860 KB
testcase_17 AC 489 ms
43,860 KB
testcase_18 AC 495 ms
43,596 KB
testcase_19 AC 485 ms
43,980 KB
testcase_20 AC 489 ms
43,728 KB
testcase_21 AC 489 ms
43,992 KB
testcase_22 AC 491 ms
43,984 KB
testcase_23 AC 491 ms
43,852 KB
testcase_24 AC 487 ms
43,728 KB
testcase_25 AC 491 ms
43,984 KB
testcase_26 AC 505 ms
44,116 KB
testcase_27 AC 490 ms
44,112 KB
testcase_28 AC 1,755 ms
44,240 KB
testcase_29 AC 1,384 ms
43,984 KB
testcase_30 AC 510 ms
43,728 KB
testcase_31 AC 523 ms
43,860 KB
testcase_32 AC 499 ms
43,604 KB
testcase_33 AC 535 ms
44,240 KB
testcase_34 AC 788 ms
44,240 KB
testcase_35 AC 517 ms
44,240 KB
testcase_36 AC 507 ms
43,984 KB
testcase_37 AC 1,185 ms
44,240 KB
testcase_38 AC 1,533 ms
44,240 KB
testcase_39 AC 1,847 ms
44,244 KB
testcase_40 TLE -
testcase_41 AC 1,283 ms
44,248 KB
testcase_42 AC 729 ms
44,236 KB
testcase_43 AC 1,090 ms
43,984 KB
testcase_44 AC 1,242 ms
44,368 KB
testcase_45 AC 1,047 ms
44,240 KB
testcase_46 AC 906 ms
43,984 KB
testcase_47 AC 1,158 ms
44,240 KB
testcase_48 AC 870 ms
44,368 KB
testcase_49 AC 1,092 ms
44,244 KB
testcase_50 AC 501 ms
43,856 KB
testcase_51 AC 503 ms
43,988 KB
testcase_52 AC 497 ms
43,984 KB
testcase_53 AC 496 ms
43,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy

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