結果
問題 | No.757 チャンパーノウン定数 (2) |
ユーザー | nanae |
提出日時 | 2018-12-05 01:16:43 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,215 bytes |
コンパイル時間 | 194 ms |
コンパイル使用メモリ | 82,972 KB |
実行使用メモリ | 87,620 KB |
最終ジャッジ日時 | 2024-07-16 00:33:15 |
合計ジャッジ時間 | 5,764 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
55,436 KB |
testcase_01 | AC | 42 ms
54,360 KB |
testcase_02 | AC | 45 ms
53,876 KB |
testcase_03 | AC | 42 ms
53,356 KB |
testcase_04 | AC | 42 ms
55,452 KB |
testcase_05 | AC | 42 ms
55,496 KB |
testcase_06 | AC | 41 ms
55,288 KB |
testcase_07 | AC | 40 ms
53,684 KB |
testcase_08 | AC | 44 ms
58,092 KB |
testcase_09 | AC | 43 ms
57,216 KB |
testcase_10 | AC | 42 ms
52,460 KB |
testcase_11 | AC | 42 ms
55,052 KB |
testcase_12 | AC | 39 ms
52,960 KB |
testcase_13 | AC | 43 ms
55,988 KB |
testcase_14 | AC | 42 ms
55,528 KB |
testcase_15 | AC | 43 ms
55,172 KB |
testcase_16 | AC | 40 ms
53,148 KB |
testcase_17 | AC | 43 ms
56,840 KB |
testcase_18 | AC | 42 ms
57,100 KB |
testcase_19 | AC | 38 ms
53,200 KB |
testcase_20 | AC | 41 ms
54,196 KB |
testcase_21 | AC | 39 ms
54,004 KB |
testcase_22 | AC | 42 ms
56,792 KB |
testcase_23 | AC | 42 ms
54,756 KB |
testcase_24 | AC | 42 ms
55,004 KB |
testcase_25 | AC | 39 ms
53,976 KB |
testcase_26 | AC | 45 ms
58,420 KB |
testcase_27 | AC | 43 ms
57,544 KB |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | AC | 77 ms
68,128 KB |
testcase_31 | AC | 57 ms
75,732 KB |
testcase_32 | AC | 45 ms
58,876 KB |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | AC | 51 ms
73,184 KB |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | AC | 338 ms
85,124 KB |
testcase_43 | AC | 801 ms
87,620 KB |
testcase_44 | RE | - |
testcase_45 | RE | - |
testcase_46 | AC | 562 ms
86,216 KB |
testcase_47 | RE | - |
testcase_48 | RE | - |
testcase_49 | RE | - |
testcase_50 | AC | 45 ms
58,024 KB |
testcase_51 | AC | 42 ms
55,724 KB |
testcase_52 | AC | 38 ms
53,252 KB |
testcase_53 | AC | 39 ms
53,292 KB |
ソースコード
#!/usr/bin/env python3 import sys def main(): b = int(input()) n = int(input(), b) - 1 # n = convert_base(b, input()) - 1 # print(n) ok = 0 ng = 10**5 + 1 while abs(ok - ng) > 1: mid = (ok + ng) // 2 if get_length_d(b, mid) < n: ok = mid else: ng = mid # print('max_digit:', ok) # print('max_digit_length:', get_length_d(b, ok)) dig = ok base = get_length_d(b, dig) bpdig = b**dig x = (n - base)//(dig+1) + bpdig - 1 def get_remain_length(b, x): return (dig + 1) * (x - bpdig + 1) t = base + get_remain_length(b, x) # print(n) # print(t) s = reconvert(b, x+1) # print(s) print(s[n - t]) def get_length_d(b, d): return (d * b**(d+1) - (d+1) * b**d + 1) // (b - 1) def convert_base(b, n): res = 0 for ni in n: res = res*b + int(ni) return res def reconvert(b, n): res = [] while n > 0: res.append(str(n % b)) n //= b res.reverse() return ''.join(res) if __name__ == '__main__': assert convert_base(2, '1011') == 11 assert reconvert(2, 7) == '111' assert reconvert(2, 6) == '110' main()