結果

問題 No.757 チャンパーノウン定数 (2)
ユーザー kmjpkmjp
提出日時 2018-12-04 23:18:44
言語 PyPy2
(7.3.15)
結果
TLE  
実行時間 -
コード長 318 bytes
コンパイル時間 1,785 ms
コンパイル使用メモリ 76,160 KB
実行使用メモリ 84,992 KB
最終ジャッジ日時 2024-07-08 10:43:05
合計ジャッジ時間 9,088 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 197 ms
84,992 KB
testcase_01 AC 67 ms
75,672 KB
testcase_02 AC 137 ms
78,208 KB
testcase_03 AC 73 ms
76,672 KB
testcase_04 AC 199 ms
79,232 KB
testcase_05 AC 200 ms
80,384 KB
testcase_06 AC 252 ms
81,152 KB
testcase_07 AC 70 ms
78,336 KB
testcase_08 AC 288 ms
82,680 KB
testcase_09 AC 270 ms
82,320 KB
testcase_10 AC 66 ms
75,520 KB
testcase_11 AC 137 ms
78,336 KB
testcase_12 AC 69 ms
76,672 KB
testcase_13 AC 193 ms
79,360 KB
testcase_14 AC 202 ms
80,256 KB
testcase_15 AC 250 ms
81,152 KB
testcase_16 AC 73 ms
78,336 KB
testcase_17 AC 289 ms
82,680 KB
testcase_18 AC 275 ms
82,052 KB
testcase_19 AC 67 ms
75,136 KB
testcase_20 AC 138 ms
78,336 KB
testcase_21 AC 72 ms
76,672 KB
testcase_22 AC 199 ms
79,488 KB
testcase_23 AC 195 ms
80,640 KB
testcase_24 AC 251 ms
80,896 KB
testcase_25 AC 72 ms
78,080 KB
testcase_26 AC 280 ms
82,640 KB
testcase_27 AC 274 ms
81,960 KB
testcase_28 TLE -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #


def Sn(n,b):
	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(20,-1,-1):
	if Sn(L+(1<<i),B)<=D:
		L += 1<<i

D -= Sn(L,B)
L += 1

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

S=""
while D>0:
	S += str(D%B)
	D /= B

print S[-1-mo]
0