結果

問題 No.757 チャンパーノウン定数 (2)
ユーザー yuppe19 😺yuppe19 😺
提出日時 2018-12-05 19:05:04
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 357 ms / 2,000 ms
コード長 642 bytes
コンパイル時間 594 ms
コンパイル使用メモリ 76,800 KB
実行使用メモリ 80,768 KB
最終ジャッジ日時 2024-07-19 18:50:08
合計ジャッジ時間 11,877 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 160 ms
77,824 KB
testcase_01 AC 80 ms
75,776 KB
testcase_02 AC 126 ms
76,416 KB
testcase_03 AC 85 ms
75,776 KB
testcase_04 AC 157 ms
77,824 KB
testcase_05 AC 158 ms
79,104 KB
testcase_06 AC 187 ms
78,976 KB
testcase_07 AC 82 ms
77,568 KB
testcase_08 AC 210 ms
79,872 KB
testcase_09 AC 204 ms
80,000 KB
testcase_10 AC 77 ms
75,520 KB
testcase_11 AC 122 ms
76,544 KB
testcase_12 AC 83 ms
75,648 KB
testcase_13 AC 164 ms
77,824 KB
testcase_14 AC 158 ms
78,848 KB
testcase_15 AC 190 ms
78,976 KB
testcase_16 AC 84 ms
77,184 KB
testcase_17 AC 207 ms
80,128 KB
testcase_18 AC 206 ms
79,872 KB
testcase_19 AC 81 ms
75,648 KB
testcase_20 AC 123 ms
76,800 KB
testcase_21 AC 81 ms
75,520 KB
testcase_22 AC 156 ms
77,952 KB
testcase_23 AC 161 ms
78,848 KB
testcase_24 AC 188 ms
79,104 KB
testcase_25 AC 81 ms
77,184 KB
testcase_26 AC 208 ms
80,000 KB
testcase_27 AC 202 ms
79,744 KB
testcase_28 AC 240 ms
79,104 KB
testcase_29 AC 298 ms
80,384 KB
testcase_30 AC 201 ms
80,384 KB
testcase_31 AC 79 ms
77,440 KB
testcase_32 AC 214 ms
80,384 KB
testcase_33 AC 123 ms
76,800 KB
testcase_34 AC 232 ms
80,128 KB
testcase_35 AC 85 ms
77,440 KB
testcase_36 AC 193 ms
79,360 KB
testcase_37 AC 262 ms
79,488 KB
testcase_38 AC 232 ms
79,360 KB
testcase_39 AC 265 ms
79,232 KB
testcase_40 AC 324 ms
80,128 KB
testcase_41 AC 319 ms
80,768 KB
testcase_42 AC 82 ms
76,800 KB
testcase_43 AC 91 ms
78,080 KB
testcase_44 AC 357 ms
80,512 KB
testcase_45 AC 255 ms
78,592 KB
testcase_46 AC 86 ms
76,544 KB
testcase_47 AC 311 ms
79,488 KB
testcase_48 AC 169 ms
76,928 KB
testcase_49 AC 254 ms
78,976 KB
testcase_50 AC 207 ms
80,384 KB
testcase_51 AC 193 ms
78,848 KB
testcase_52 AC 78 ms
75,776 KB
testcase_53 AC 78 ms
75,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python2
# -*- coding: utf-8 -*-
# †
from math import log

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)
    m = int(log(w, B) + 1e-9) + 1
    return (w / B**(m-1-r)) % B

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