結果

問題 No.757 チャンパーノウン定数 (2)
ユーザー nebukuro09nebukuro09
提出日時 2018-12-05 10:59:49
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 1,929 ms / 2,000 ms
コード長 672 bytes
コンパイル時間 1,380 ms
コンパイル使用メモリ 76,676 KB
実行使用メモリ 97,152 KB
最終ジャッジ日時 2024-07-18 10:42:55
合計ジャッジ時間 22,900 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 161 ms
77,184 KB
testcase_01 AC 84 ms
75,648 KB
testcase_02 AC 128 ms
76,672 KB
testcase_03 AC 80 ms
75,264 KB
testcase_04 AC 165 ms
77,440 KB
testcase_05 AC 165 ms
78,336 KB
testcase_06 AC 193 ms
78,592 KB
testcase_07 AC 82 ms
76,800 KB
testcase_08 AC 214 ms
79,360 KB
testcase_09 AC 208 ms
78,976 KB
testcase_10 AC 81 ms
75,392 KB
testcase_11 AC 129 ms
76,544 KB
testcase_12 AC 82 ms
75,648 KB
testcase_13 AC 164 ms
77,184 KB
testcase_14 AC 161 ms
78,208 KB
testcase_15 AC 195 ms
78,848 KB
testcase_16 AC 81 ms
76,544 KB
testcase_17 AC 205 ms
79,360 KB
testcase_18 AC 203 ms
79,232 KB
testcase_19 AC 82 ms
75,392 KB
testcase_20 AC 128 ms
76,800 KB
testcase_21 AC 83 ms
75,520 KB
testcase_22 AC 163 ms
77,312 KB
testcase_23 AC 162 ms
78,080 KB
testcase_24 AC 192 ms
78,592 KB
testcase_25 AC 82 ms
76,416 KB
testcase_26 AC 210 ms
79,360 KB
testcase_27 AC 206 ms
79,232 KB
testcase_28 AC 1,263 ms
86,912 KB
testcase_29 AC 1,024 ms
85,760 KB
testcase_30 AC 212 ms
80,512 KB
testcase_31 AC 105 ms
78,592 KB
testcase_32 AC 214 ms
79,232 KB
testcase_33 AC 150 ms
78,336 KB
testcase_34 AC 468 ms
81,280 KB
testcase_35 AC 98 ms
78,464 KB
testcase_36 AC 205 ms
80,256 KB
testcase_37 AC 829 ms
83,072 KB
testcase_38 AC 1,127 ms
85,632 KB
testcase_39 AC 1,398 ms
88,832 KB
testcase_40 AC 1,929 ms
97,152 KB
testcase_41 AC 995 ms
84,480 KB
testcase_42 AC 358 ms
78,208 KB
testcase_43 AC 808 ms
80,640 KB
testcase_44 AC 967 ms
84,352 KB
testcase_45 AC 718 ms
80,128 KB
testcase_46 AC 578 ms
78,464 KB
testcase_47 AC 847 ms
82,432 KB
testcase_48 AC 494 ms
78,720 KB
testcase_49 AC 767 ms
81,280 KB
testcase_50 AC 211 ms
79,104 KB
testcase_51 AC 192 ms
78,720 KB
testcase_52 AC 80 ms
75,520 KB
testcase_53 AC 79 ms
75,392 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**6
    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
    s = []
    hi += a - 1
    return hi / (B ** (keta - D + x)) % B

print solve2()
0