結果

問題 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
コンパイル時間 89 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-09-14 02:21:56
合計ジャッジ時間 3,292 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 30 ms
10,496 KB
testcase_02 WA -
testcase_03 AC 30 ms
10,496 KB
testcase_04 RE -
testcase_05 WA -
testcase_06 RE -
testcase_07 AC 30 ms
10,624 KB
testcase_08 WA -
testcase_09 AC 30 ms
10,752 KB
testcase_10 RE -
testcase_11 AC 30 ms
10,496 KB
testcase_12 AC 31 ms
10,752 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 30 ms
10,624 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 40 ms
10,624 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 30 ms
10,496 KB
testcase_51 AC 31 ms
10,496 KB
testcase_52 WA -
testcase_53 AC 30 ms
10,496 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