結果

問題 No.757 チャンパーノウン定数 (2)
ユーザー nebukuro09nebukuro09
提出日時 2018-12-06 09:29:46
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 256 ms / 2,000 ms
コード長 570 bytes
コンパイル時間 1,978 ms
コンパイル使用メモリ 76,852 KB
実行使用メモリ 77,204 KB
最終ジャッジ日時 2024-09-14 00:12:52
合計ジャッジ時間 9,646 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
75,296 KB
testcase_01 AC 73 ms
75,792 KB
testcase_02 AC 74 ms
75,668 KB
testcase_03 AC 74 ms
75,324 KB
testcase_04 AC 76 ms
75,580 KB
testcase_05 AC 76 ms
75,540 KB
testcase_06 AC 77 ms
76,296 KB
testcase_07 AC 76 ms
75,544 KB
testcase_08 AC 78 ms
76,164 KB
testcase_09 AC 79 ms
76,588 KB
testcase_10 AC 75 ms
75,560 KB
testcase_11 AC 74 ms
75,780 KB
testcase_12 AC 74 ms
75,660 KB
testcase_13 AC 75 ms
75,544 KB
testcase_14 AC 77 ms
75,704 KB
testcase_15 AC 80 ms
76,192 KB
testcase_16 AC 75 ms
75,584 KB
testcase_17 AC 79 ms
76,320 KB
testcase_18 AC 81 ms
76,320 KB
testcase_19 AC 76 ms
75,660 KB
testcase_20 AC 77 ms
75,408 KB
testcase_21 AC 75 ms
75,656 KB
testcase_22 AC 76 ms
75,784 KB
testcase_23 AC 77 ms
75,536 KB
testcase_24 AC 80 ms
76,180 KB
testcase_25 AC 75 ms
75,828 KB
testcase_26 AC 81 ms
76,048 KB
testcase_27 AC 82 ms
76,076 KB
testcase_28 AC 175 ms
76,444 KB
testcase_29 AC 178 ms
76,452 KB
testcase_30 AC 83 ms
76,044 KB
testcase_31 AC 77 ms
75,304 KB
testcase_32 AC 82 ms
76,464 KB
testcase_33 AC 82 ms
76,328 KB
testcase_34 AC 111 ms
76,572 KB
testcase_35 AC 76 ms
75,644 KB
testcase_36 AC 82 ms
76,068 KB
testcase_37 AC 150 ms
76,164 KB
testcase_38 AC 167 ms
76,300 KB
testcase_39 AC 181 ms
76,816 KB
testcase_40 AC 211 ms
77,092 KB
testcase_41 AC 212 ms
76,832 KB
testcase_42 AC 77 ms
75,676 KB
testcase_43 AC 80 ms
76,300 KB
testcase_44 AC 256 ms
77,204 KB
testcase_45 AC 183 ms
76,312 KB
testcase_46 AC 82 ms
76,060 KB
testcase_47 AC 217 ms
76,564 KB
testcase_48 AC 133 ms
76,184 KB
testcase_49 AC 179 ms
76,552 KB
testcase_50 AC 83 ms
76,408 KB
testcase_51 AC 81 ms
76,320 KB
testcase_52 AC 75 ms
75,512 KB
testcase_53 AC 75 ms
75,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

B = int(raw_input())
D = int(raw_input(), base=B)

def f(n):
    if n == 0:
        return 0
    else:
        return n * B ** n - (B ** n - 1) / (B - 1)

def solve1():
    hi = 10**5
    lo = 0
    while hi - lo > 1:
        mid = (hi + lo) / 2
        if f(mid) >= D:
            hi = mid
        else:
            lo = mid
    return hi

def solve2():
    keta = solve1()
    x = f(keta-1)
    a = B ** (keta-1)
    hi = (D - x) / keta + ((D - x) % keta > 0)
    lo = hi - 1
    x += lo * keta
    hi += a - 1
    return hi / (B ** (keta - D + x)) % B

print solve2()
0