結果

問題 No.757 チャンパーノウン定数 (2)
ユーザー chocoruskchocorusk
提出日時 2018-12-05 00:36:44
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 388 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 65,792 KB
最終ジャッジ日時 2024-07-08 13:32:55
合計ジャッジ時間 4,003 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 35 ms
52,224 KB
testcase_03 AC 35 ms
51,968 KB
testcase_04 AC 37 ms
51,712 KB
testcase_05 AC 37 ms
51,968 KB
testcase_06 AC 37 ms
51,840 KB
testcase_07 AC 35 ms
51,968 KB
testcase_08 AC 36 ms
51,712 KB
testcase_09 AC 36 ms
51,968 KB
testcase_10 AC 35 ms
51,968 KB
testcase_11 AC 36 ms
51,968 KB
testcase_12 AC 37 ms
51,968 KB
testcase_13 AC 35 ms
51,968 KB
testcase_14 AC 36 ms
51,840 KB
testcase_15 AC 36 ms
51,968 KB
testcase_16 AC 34 ms
52,224 KB
testcase_17 AC 36 ms
51,840 KB
testcase_18 AC 35 ms
51,712 KB
testcase_19 AC 37 ms
51,968 KB
testcase_20 AC 36 ms
51,968 KB
testcase_21 AC 37 ms
51,968 KB
testcase_22 AC 35 ms
52,196 KB
testcase_23 AC 35 ms
51,712 KB
testcase_24 AC 37 ms
51,968 KB
testcase_25 AC 36 ms
51,712 KB
testcase_26 AC 39 ms
52,192 KB
testcase_27 AC 36 ms
52,224 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 AC 39 ms
56,448 KB
testcase_31 AC 38 ms
52,608 KB
testcase_32 AC 37 ms
51,968 KB
testcase_33 RE -
testcase_34 RE -
testcase_35 AC 39 ms
52,352 KB
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 AC 69 ms
58,880 KB
testcase_43 AC 75 ms
63,104 KB
testcase_44 RE -
testcase_45 RE -
testcase_46 AC 71 ms
60,672 KB
testcase_47 RE -
testcase_48 RE -
testcase_49 RE -
testcase_50 RE -
testcase_51 RE -
testcase_52 AC 36 ms
51,840 KB
testcase_53 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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