結果

問題 No.756 チャンパーノウン定数 (1)
ユーザー nasadigitalnasadigital
提出日時 2018-12-08 11:32:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 526 ms / 2,000 ms
コード長 432 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 44,452 KB
最終ジャッジ日時 2024-09-14 04:30:37
合計ジャッジ時間 13,748 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 526 ms
43,804 KB
testcase_01 AC 521 ms
44,200 KB
testcase_02 AC 520 ms
44,192 KB
testcase_03 AC 519 ms
44,452 KB
testcase_04 AC 518 ms
44,204 KB
testcase_05 AC 518 ms
44,448 KB
testcase_06 AC 524 ms
44,200 KB
testcase_07 AC 520 ms
43,812 KB
testcase_08 AC 520 ms
44,192 KB
testcase_09 AC 519 ms
43,816 KB
testcase_10 AC 518 ms
43,812 KB
testcase_11 AC 517 ms
44,200 KB
testcase_12 AC 521 ms
43,816 KB
testcase_13 AC 522 ms
43,812 KB
testcase_14 AC 521 ms
44,200 KB
testcase_15 AC 524 ms
43,816 KB
testcase_16 AC 524 ms
43,944 KB
testcase_17 AC 524 ms
44,196 KB
testcase_18 AC 524 ms
43,816 KB
testcase_19 AC 524 ms
43,944 KB
testcase_20 AC 520 ms
43,816 KB
testcase_21 AC 519 ms
43,808 KB
testcase_22 AC 521 ms
43,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
b = 10
def count(mid):
    tp = b ** mid
    return mid * tp - (tp - 1) // (b - 1)
n = int(input(), b)
digit = 0
l = 1
r = 100000
while l <= r:
    mid = (l + r) // 2
    cur_t = count(mid)
    if cur_t >= n:
        r = mid - 1
        digit = mid
    else:
        l = mid + 1
n -= count(digit - 1)
num = b ** (digit - 1) + ((n + digit - 1) // digit) - 1
print((num//(b ** (digit - 1 - ((n - 1) % digit)))) % b)
0