結果

問題 No.757 チャンパーノウン定数 (2)
ユーザー nebukuro09nebukuro09
提出日時 2018-12-05 11:02:23
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 1,854 ms / 2,000 ms
コード長 661 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 77,056 KB
実行使用メモリ 94,336 KB
最終ジャッジ日時 2024-07-18 10:46:16
合計ジャッジ時間 18,497 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
75,776 KB
testcase_01 AC 83 ms
75,264 KB
testcase_02 AC 87 ms
75,392 KB
testcase_03 AC 79 ms
75,776 KB
testcase_04 AC 87 ms
75,264 KB
testcase_05 AC 81 ms
75,776 KB
testcase_06 AC 87 ms
76,288 KB
testcase_07 AC 82 ms
75,648 KB
testcase_08 AC 92 ms
76,544 KB
testcase_09 AC 86 ms
76,672 KB
testcase_10 AC 80 ms
75,648 KB
testcase_11 AC 82 ms
75,648 KB
testcase_12 AC 81 ms
75,904 KB
testcase_13 AC 81 ms
75,520 KB
testcase_14 AC 82 ms
75,392 KB
testcase_15 AC 83 ms
76,416 KB
testcase_16 AC 82 ms
75,392 KB
testcase_17 AC 84 ms
76,416 KB
testcase_18 AC 89 ms
76,288 KB
testcase_19 AC 83 ms
75,264 KB
testcase_20 AC 84 ms
75,520 KB
testcase_21 AC 80 ms
75,520 KB
testcase_22 AC 84 ms
75,520 KB
testcase_23 AC 81 ms
75,520 KB
testcase_24 AC 86 ms
76,544 KB
testcase_25 AC 80 ms
75,520 KB
testcase_26 AC 85 ms
76,416 KB
testcase_27 AC 87 ms
76,288 KB
testcase_28 AC 1,226 ms
84,992 KB
testcase_29 AC 942 ms
82,816 KB
testcase_30 AC 91 ms
77,568 KB
testcase_31 AC 107 ms
77,696 KB
testcase_32 AC 89 ms
76,416 KB
testcase_33 AC 112 ms
77,568 KB
testcase_34 AC 366 ms
78,208 KB
testcase_35 AC 99 ms
77,696 KB
testcase_36 AC 98 ms
77,824 KB
testcase_37 AC 735 ms
80,768 KB
testcase_38 AC 1,050 ms
83,712 KB
testcase_39 AC 1,317 ms
86,784 KB
testcase_40 AC 1,854 ms
94,336 KB
testcase_41 AC 906 ms
81,152 KB
testcase_42 AC 376 ms
77,824 KB
testcase_43 AC 823 ms
79,744 KB
testcase_44 AC 853 ms
81,024 KB
testcase_45 AC 648 ms
79,104 KB
testcase_46 AC 578 ms
78,592 KB
testcase_47 AC 758 ms
79,872 KB
testcase_48 AC 461 ms
78,464 KB
testcase_49 AC 678 ms
79,104 KB
testcase_50 AC 85 ms
76,544 KB
testcase_51 AC 87 ms
76,416 KB
testcase_52 AC 84 ms
75,392 KB
testcase_53 AC 82 ms
75,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

B = int(raw_input())
C = raw_input()
D = 0
b = 1
for i in xrange(len(C)-1, -1, -1):
    D += b * int(C[i])
    b *= 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)
    b = 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