結果

問題 No.757 チャンパーノウン定数 (2)
ユーザー parukiparuki
提出日時 2018-12-17 11:22:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,288 ms / 2,000 ms
コード長 1,254 bytes
コンパイル時間 1,061 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 83,456 KB
最終ジャッジ日時 2024-09-25 07:34:30
合計ジャッジ時間 15,102 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,144 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 38 ms
53,504 KB
testcase_03 AC 37 ms
51,840 KB
testcase_04 AC 39 ms
54,016 KB
testcase_05 AC 40 ms
53,888 KB
testcase_06 AC 41 ms
54,528 KB
testcase_07 AC 35 ms
52,352 KB
testcase_08 AC 41 ms
56,832 KB
testcase_09 AC 42 ms
56,320 KB
testcase_10 AC 37 ms
51,840 KB
testcase_11 AC 39 ms
53,504 KB
testcase_12 AC 37 ms
51,936 KB
testcase_13 AC 40 ms
54,144 KB
testcase_14 AC 41 ms
54,400 KB
testcase_15 AC 40 ms
54,528 KB
testcase_16 AC 37 ms
52,608 KB
testcase_17 AC 42 ms
56,576 KB
testcase_18 AC 42 ms
56,704 KB
testcase_19 AC 39 ms
51,748 KB
testcase_20 AC 40 ms
53,632 KB
testcase_21 AC 38 ms
52,096 KB
testcase_22 AC 41 ms
54,016 KB
testcase_23 AC 40 ms
53,760 KB
testcase_24 AC 40 ms
54,656 KB
testcase_25 AC 38 ms
52,352 KB
testcase_26 AC 41 ms
56,320 KB
testcase_27 AC 41 ms
56,704 KB
testcase_28 AC 875 ms
78,612 KB
testcase_29 AC 678 ms
77,696 KB
testcase_30 AC 49 ms
70,016 KB
testcase_31 AC 59 ms
75,100 KB
testcase_32 AC 44 ms
57,216 KB
testcase_33 AC 66 ms
75,480 KB
testcase_34 AC 242 ms
75,648 KB
testcase_35 AC 53 ms
75,136 KB
testcase_36 AC 50 ms
72,704 KB
testcase_37 AC 502 ms
76,672 KB
testcase_38 AC 723 ms
78,336 KB
testcase_39 AC 945 ms
79,872 KB
testcase_40 AC 1,288 ms
83,456 KB
testcase_41 AC 907 ms
78,336 KB
testcase_42 AC 344 ms
75,520 KB
testcase_43 AC 868 ms
77,712 KB
testcase_44 AC 867 ms
78,780 KB
testcase_45 AC 632 ms
77,056 KB
testcase_46 AC 582 ms
76,500 KB
testcase_47 AC 760 ms
77,696 KB
testcase_48 AC 469 ms
76,084 KB
testcase_49 AC 716 ms
77,164 KB
testcase_50 AC 43 ms
56,576 KB
testcase_51 AC 41 ms
54,656 KB
testcase_52 AC 39 ms
52,224 KB
testcase_53 AC 38 ms
51,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# n桁の数は
# f(n) = (B-1)Σ[i=1...n]i*B^(i-1) 個ある。
# g(n) = Σ[i=1...n]i*B^(i-1)
# とおくとg(n)は等差*等比の形になっている。

# 以下を参考に
# 等比×等差の和を求める2通りの方法 | 高校数学の美しい物語
# https://mathtrain.jp/ar
# 
# 等比Bに注目して差をとる。つまり
# g(n) = 1*1 + 2*B + 3*B^2 + ... + n*B^(n-1)
# Bg(n) =      1*B + 2*B^2 + 3*B^3 + ... + (n-1)*B^(n-1) + n*B^n
# の差をとると
# (1-B)g(n) = 1 + B + B^2 + B^3 + ... + B^(n-1) - n*B^n
# 右辺にできた等比数列に注目すると
# (1-B)g(n) = (B^n-1)/(B-1) - n*B^n
# g(n) = ((B^n-1) / (B-1) - n*B^n) / (1-B)
# よって
# f(n) = n*B^n - (B^n-1)/(B-1)
# ちなみにWolframAlphaを使えば、g(n)はすぐに求まる。

B = int(input())
D = input().strip()
# D(B) => E(10)
E = 0
for d in D:
    E = E*B + int(d)

def f(n):
    return n*B**n - (B**n-1)//(B-1)

# 何桁か
# (low, high]
low = 0
high = 100000
while high-low>1:
    med = (low+high)//2
    if f(med)>=E:
        high = med
    else:
        low = med

digit = high
index = E-f(digit-1)# 1-indexed
mod = (index-1)%digit

# numberの上位mod桁目 0-indexed
num = B**(digit-1)+(index-1)//digit
ans = (num//B**(digit-mod-1))%B
print(ans)

0