結果

問題 No.757 チャンパーノウン定数 (2)
ユーザー nasadigitalnasadigital
提出日時 2018-12-06 11:25:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 266 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 10,692 KB
実行使用メモリ 8,444 KB
最終ジャッジ日時 2023-10-12 02:35:35
合計ジャッジ時間 3,070 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 16 ms
7,940 KB
testcase_02 WA -
testcase_03 AC 16 ms
7,840 KB
testcase_04 RE -
testcase_05 WA -
testcase_06 RE -
testcase_07 AC 16 ms
7,840 KB
testcase_08 WA -
testcase_09 AC 16 ms
7,876 KB
testcase_10 RE -
testcase_11 AC 16 ms
7,808 KB
testcase_12 AC 16 ms
7,820 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 16 ms
7,868 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 RE -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 RE -
testcase_29 RE -
testcase_30 AC 26 ms
7,748 KB
testcase_31 RE -
testcase_32 WA -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 RE -
testcase_43 RE -
testcase_44 RE -
testcase_45 RE -
testcase_46 RE -
testcase_47 RE -
testcase_48 RE -
testcase_49 RE -
testcase_50 AC 15 ms
7,952 KB
testcase_51 AC 16 ms
7,892 KB
testcase_52 WA -
testcase_53 AC 15 ms
7,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

b = int(input()) 
n = int(input())
digit = 0
total = 0
while True:
    total = (total + 1) * b - 1
    digit += 1
    if n <= total * digit:
        break
    n -= total * digit
num = b ** (digit - 1) + ((n + digit - 1) // digit) - 1
print(str(num)[(n - 1) % digit])
0