結果
問題 | No.757 チャンパーノウン定数 (2) |
ユーザー | nasadigital |
提出日時 | 2018-12-08 11:20:52 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 437 bytes |
コンパイル時間 | 492 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 44,776 KB |
最終ジャッジ日時 | 2024-09-14 04:29:20 |
合計ジャッジ時間 | 30,769 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
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 | WA | - |
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 | WA | - |
testcase_43 | WA | - |
testcase_44 | RE | - |
testcase_45 | RE | - |
testcase_46 | WA | - |
testcase_47 | RE | - |
testcase_48 | RE | - |
testcase_49 | RE | - |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
ソースコード
import numpy as np b = int(input()) 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(np.base_repr(num, b)[(n - 1) % digit])