結果

問題 No.757 チャンパーノウン定数 (2)
ユーザー nasadigitalnasadigital
提出日時 2018-12-06 11:38:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 300 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 10,540 KB
実行使用メモリ 29,908 KB
最終ジャッジ日時 2023-10-12 02:35:54
合計ジャッジ時間 11,660 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
29,556 KB
testcase_01 WA -
testcase_02 AC 140 ms
29,480 KB
testcase_03 AC 138 ms
29,500 KB
testcase_04 AC 140 ms
29,532 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 136 ms
29,392 KB
testcase_09 AC 137 ms
29,516 KB
testcase_10 WA -
testcase_11 AC 138 ms
29,500 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 138 ms
29,520 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 130 ms
29,404 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 RE -
testcase_29 RE -
testcase_30 AC 177 ms
29,600 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 RE -
testcase_34 RE -
testcase_35 WA -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 TLE -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
b = int(input()) 
n = int(input(), b)
digit = 0
total = 0
while True:
    total = total * b + (b - 1)
    digit += 1
    if n <= total * digit:
        break
    n -= total * digit
num = b ** (digit - 1) + ((n + digit - 1) // digit) - 1
print(np.base_repr(num, b)[(n - 1) % digit])
0