結果

問題 No.757 チャンパーノウン定数 (2)
ユーザー yuppe19 😺yuppe19 😺
提出日時 2018-12-05 20:39:25
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 386 ms / 2,000 ms
コード長 587 bytes
コンパイル時間 1,344 ms
コンパイル使用メモリ 76,800 KB
実行使用メモリ 80,896 KB
最終ジャッジ日時 2024-07-20 05:09:49
合計ジャッジ時間 12,798 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 161 ms
77,568 KB
testcase_01 AC 75 ms
75,392 KB
testcase_02 AC 126 ms
76,672 KB
testcase_03 AC 78 ms
75,388 KB
testcase_04 AC 166 ms
77,592 KB
testcase_05 AC 167 ms
78,592 KB
testcase_06 AC 195 ms
78,592 KB
testcase_07 AC 78 ms
76,952 KB
testcase_08 AC 214 ms
79,772 KB
testcase_09 AC 203 ms
79,736 KB
testcase_10 AC 76 ms
75,520 KB
testcase_11 AC 122 ms
76,540 KB
testcase_12 AC 79 ms
75,432 KB
testcase_13 AC 160 ms
77,492 KB
testcase_14 AC 161 ms
78,720 KB
testcase_15 AC 190 ms
78,976 KB
testcase_16 AC 78 ms
76,952 KB
testcase_17 AC 218 ms
79,628 KB
testcase_18 AC 208 ms
79,616 KB
testcase_19 AC 78 ms
75,520 KB
testcase_20 AC 124 ms
76,328 KB
testcase_21 AC 77 ms
75,136 KB
testcase_22 AC 164 ms
77,576 KB
testcase_23 AC 168 ms
78,592 KB
testcase_24 AC 196 ms
78,848 KB
testcase_25 AC 79 ms
77,056 KB
testcase_26 AC 211 ms
79,872 KB
testcase_27 AC 209 ms
79,644 KB
testcase_28 AC 252 ms
78,764 KB
testcase_29 AC 311 ms
79,904 KB
testcase_30 AC 211 ms
79,616 KB
testcase_31 AC 82 ms
76,928 KB
testcase_32 AC 216 ms
79,872 KB
testcase_33 AC 127 ms
76,664 KB
testcase_34 AC 229 ms
79,808 KB
testcase_35 AC 80 ms
76,928 KB
testcase_36 AC 192 ms
78,916 KB
testcase_37 AC 264 ms
79,616 KB
testcase_38 AC 245 ms
78,464 KB
testcase_39 AC 266 ms
78,632 KB
testcase_40 AC 343 ms
80,128 KB
testcase_41 AC 343 ms
80,896 KB
testcase_42 AC 79 ms
76,160 KB
testcase_43 AC 85 ms
77,824 KB
testcase_44 AC 386 ms
80,256 KB
testcase_45 AC 267 ms
78,592 KB
testcase_46 AC 83 ms
75,904 KB
testcase_47 AC 325 ms
79,104 KB
testcase_48 AC 177 ms
76,544 KB
testcase_49 AC 260 ms
78,780 KB
testcase_50 AC 212 ms
79,904 KB
testcase_51 AC 198 ms
78,604 KB
testcase_52 AC 79 ms
75,264 KB
testcase_53 AC 76 ms
75,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python2
# -*- coding: utf-8 -*-
# †
def rep(B, i):
    return (B**i - 1) / (B-1)

def g(B, i):
    if i == 1:
        return 1
    if i == 2:
        return B
    return (i-2) * B**(i-1) + rep(B, i-1) * (B-2) + 2


def f(B, D):
    lo, hi = 0, 10**6
    while hi - lo > 1:
        md = (lo + hi) / 2
        if g(B, md) <= D:
            lo = md
        else:
            hi = md
    pos = g(B, lo)
    dif = D - pos
    z, r = divmod(dif, lo)
    w = z + B**(lo-1)
    return (w / B**(lo-1-r)) % B

B = int(raw_input())
D = int(raw_input(), base=B)
res = f(B, D)
print res
0