結果

問題 No.757 チャンパーノウン定数 (2)
ユーザー mkawa2mkawa2
提出日時 2022-02-02 11:38:05
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,509 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 83,584 KB
最終ジャッジ日時 2024-06-11 09:20:36
合計ジャッジ時間 7,734 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
57,472 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 33 ms
52,096 KB
testcase_03 AC 34 ms
51,968 KB
testcase_04 AC 34 ms
52,096 KB
testcase_05 AC 35 ms
52,224 KB
testcase_06 AC 35 ms
52,224 KB
testcase_07 AC 34 ms
51,968 KB
testcase_08 AC 35 ms
52,352 KB
testcase_09 AC 34 ms
51,968 KB
testcase_10 AC 33 ms
51,968 KB
testcase_11 AC 34 ms
52,224 KB
testcase_12 AC 34 ms
51,968 KB
testcase_13 AC 36 ms
51,968 KB
testcase_14 AC 40 ms
52,096 KB
testcase_15 AC 35 ms
52,096 KB
testcase_16 AC 35 ms
52,224 KB
testcase_17 AC 34 ms
52,096 KB
testcase_18 AC 35 ms
51,968 KB
testcase_19 AC 35 ms
52,096 KB
testcase_20 AC 35 ms
52,224 KB
testcase_21 AC 35 ms
51,840 KB
testcase_22 AC 34 ms
51,968 KB
testcase_23 AC 34 ms
52,096 KB
testcase_24 AC 34 ms
51,968 KB
testcase_25 AC 34 ms
52,352 KB
testcase_26 AC 34 ms
51,968 KB
testcase_27 AC 34 ms
51,968 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 AC 54 ms
63,104 KB
testcase_31 AC 80 ms
75,136 KB
testcase_32 AC 40 ms
52,480 KB
testcase_33 RE -
testcase_34 RE -
testcase_35 AC 95 ms
73,088 KB
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 AC 1,202 ms
82,816 KB
testcase_43 TLE -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = 18446744073709551615
# inf = 4294967295
# md = 10**9+7
md = 998244353

# aけたまでの整数を並べたときの長さ
def length(a):
    res = b**a*a-(b**a-1)//(b-1)
    return res

def binary_search(l, r, ok, minimize):
    if minimize: l -= 1
    else: r += 1
    while l+1 < r:
        m = (l+r)//2
        if ok(m) ^ minimize: l = m
        else: r = m
    if minimize: return r
    return l

def base_b(a, b):
    res = []
    while a:
        a, r = divmod(a, b)
        res.append(r)
    return res[::-1]

def ok(a):
    return length(a) >= d

b = II()
s = SI()
d = int(s, b)
n = len(s)

# 最後の整数の桁数
a = binary_search(1, n, ok, True)
# print(a)

# leading0を付けたときの長さ
za = d+(b**a-1)//(b-1)-1
# za = d+length(a-1)+1
# 最後の整数
r = za//a

# print(base_b(r, b))
ans = base_b(r, b)[za%a]
print(ans)
0