結果

問題 No.757 チャンパーノウン定数 (2)
ユーザー chocoruskchocorusk
提出日時 2018-12-05 01:36:28
言語 PyPy3
(7.3.15)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 362 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 67,720 KB
最終ジャッジ日時 2024-07-16 01:12:43
合計ジャッジ時間 3,782 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,488 KB
testcase_01 AC 35 ms
52,460 KB
testcase_02 AC 34 ms
53,152 KB
testcase_03 AC 37 ms
52,872 KB
testcase_04 AC 34 ms
52,604 KB
testcase_05 AC 33 ms
52,968 KB
testcase_06 AC 34 ms
52,700 KB
testcase_07 AC 34 ms
52,600 KB
testcase_08 AC 34 ms
52,156 KB
testcase_09 AC 33 ms
52,512 KB
testcase_10 AC 35 ms
52,120 KB
testcase_11 AC 35 ms
52,728 KB
testcase_12 AC 35 ms
53,208 KB
testcase_13 AC 36 ms
52,212 KB
testcase_14 AC 34 ms
52,708 KB
testcase_15 AC 36 ms
52,076 KB
testcase_16 AC 36 ms
52,944 KB
testcase_17 AC 36 ms
53,104 KB
testcase_18 AC 35 ms
52,908 KB
testcase_19 AC 35 ms
52,496 KB
testcase_20 AC 34 ms
52,524 KB
testcase_21 AC 35 ms
52,944 KB
testcase_22 AC 33 ms
51,700 KB
testcase_23 AC 34 ms
53,212 KB
testcase_24 AC 34 ms
52,736 KB
testcase_25 AC 34 ms
51,944 KB
testcase_26 AC 37 ms
52,180 KB
testcase_27 AC 34 ms
51,752 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 AC 38 ms
57,764 KB
testcase_31 AC 36 ms
53,284 KB
testcase_32 AC 34 ms
52,216 KB
testcase_33 RE -
testcase_34 RE -
testcase_35 AC 37 ms
52,488 KB
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 AC 68 ms
60,104 KB
testcase_43 AC 73 ms
63,308 KB
testcase_44 RE -
testcase_45 RE -
testcase_46 AC 69 ms
61,180 KB
testcase_47 RE -
testcase_48 RE -
testcase_49 RE -
testcase_50 AC 34 ms
52,292 KB
testcase_51 AC 34 ms
52,252 KB
testcase_52 AC 32 ms
52,368 KB
testcase_53 AC 32 ms
53,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
b=int(input())
s=input()
d=int(s, b)
if d<b:
  print(d)
  sys.exit()
n1=1
n2=len(s)
while n1!=n2:
  n=(n1+n2+1)//2
  x=int('1'+('0'*n), b)*n-int('1'*n, b)
  if x<d:
    n1=n
  else:
    n2=n-1
d=d-int('1'+('0'*n1), b)*n1+int('1'*n1, b)
p=int('1'+('0'*n1), b)
i=n1+1
r=b
if d%i!=0:
  r=int('1'+('0'*(i-d%i+1)), b)
x=p-1+(d+i-1)//i
x%=r
print(x//(r//b))
0