結果

問題 No.757 チャンパーノウン定数 (2)
ユーザー kmjpkmjp
提出日時 2018-12-04 23:26:41
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 1,334 ms / 2,000 ms
コード長 289 bytes
コンパイル時間 1,339 ms
コンパイル使用メモリ 76,928 KB
実行使用メモリ 84,992 KB
最終ジャッジ日時 2024-07-08 10:57:21
合計ジャッジ時間 15,521 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
75,392 KB
testcase_01 AC 67 ms
75,392 KB
testcase_02 AC 70 ms
75,648 KB
testcase_03 AC 71 ms
75,392 KB
testcase_04 AC 73 ms
75,688 KB
testcase_05 AC 74 ms
75,776 KB
testcase_06 AC 75 ms
76,416 KB
testcase_07 AC 68 ms
75,648 KB
testcase_08 AC 74 ms
76,604 KB
testcase_09 AC 72 ms
76,308 KB
testcase_10 AC 71 ms
75,776 KB
testcase_11 AC 68 ms
75,648 KB
testcase_12 AC 70 ms
75,668 KB
testcase_13 AC 72 ms
75,392 KB
testcase_14 AC 73 ms
75,648 KB
testcase_15 AC 73 ms
76,416 KB
testcase_16 AC 69 ms
75,420 KB
testcase_17 AC 74 ms
76,672 KB
testcase_18 AC 74 ms
76,288 KB
testcase_19 AC 68 ms
75,648 KB
testcase_20 AC 72 ms
75,648 KB
testcase_21 AC 71 ms
75,520 KB
testcase_22 AC 73 ms
75,392 KB
testcase_23 AC 71 ms
75,420 KB
testcase_24 AC 78 ms
76,160 KB
testcase_25 AC 72 ms
75,776 KB
testcase_26 AC 74 ms
76,416 KB
testcase_27 AC 73 ms
76,160 KB
testcase_28 AC 883 ms
81,152 KB
testcase_29 AC 646 ms
79,744 KB
testcase_30 AC 76 ms
78,208 KB
testcase_31 AC 86 ms
77,716 KB
testcase_32 AC 75 ms
76,288 KB
testcase_33 AC 90 ms
77,372 KB
testcase_34 AC 256 ms
77,828 KB
testcase_35 AC 79 ms
77,696 KB
testcase_36 AC 77 ms
77,464 KB
testcase_37 AC 500 ms
79,272 KB
testcase_38 AC 755 ms
80,028 KB
testcase_39 AC 927 ms
82,048 KB
testcase_40 AC 1,334 ms
84,992 KB
testcase_41 AC 873 ms
80,288 KB
testcase_42 AC 349 ms
77,824 KB
testcase_43 AC 815 ms
79,524 KB
testcase_44 AC 767 ms
80,252 KB
testcase_45 AC 588 ms
78,592 KB
testcase_46 AC 553 ms
78,336 KB
testcase_47 AC 731 ms
79,616 KB
testcase_48 AC 440 ms
78,464 KB
testcase_49 AC 660 ms
78,848 KB
testcase_50 AC 69 ms
76,292 KB
testcase_51 AC 71 ms
76,304 KB
testcase_52 AC 70 ms
75,512 KB
testcase_53 AC 69 ms
75,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


def Sn(n):
	bn = B**n
	return n*bn - (bn-1)/(B-1)

B=int(raw_input())
C=raw_input().strip()
D=0
for c in C:
	D=D*B+(ord(c)-ord('0'))

D-=1
L=0
for i in range(16,-1,-1):
	if Sn(L+(1<<i))<=D:
		L += 1<<i

D -= Sn(L)
L += 1

mo = D % L
D = (B**(L-1)) + D/L

D /= B**(L-1-mo)
print str(D%B)
0