結果

問題 No.757 チャンパーノウン定数 (2)
ユーザー kmjpkmjp
提出日時 2018-12-04 23:23:37
言語 PyPy2
(7.3.15)
結果
TLE  
実行時間 -
コード長 313 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 77,104 KB
実行使用メモリ 88,612 KB
最終ジャッジ日時 2024-07-08 10:50:41
合計ジャッジ時間 6,496 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
82,488 KB
testcase_01 AC 65 ms
75,144 KB
testcase_02 AC 71 ms
75,544 KB
testcase_03 AC 70 ms
75,560 KB
testcase_04 AC 69 ms
75,332 KB
testcase_05 AC 66 ms
75,256 KB
testcase_06 AC 67 ms
76,300 KB
testcase_07 AC 65 ms
75,420 KB
testcase_08 AC 70 ms
76,208 KB
testcase_09 AC 68 ms
76,440 KB
testcase_10 AC 64 ms
75,424 KB
testcase_11 AC 65 ms
75,180 KB
testcase_12 AC 63 ms
75,272 KB
testcase_13 AC 66 ms
75,700 KB
testcase_14 AC 72 ms
75,456 KB
testcase_15 AC 70 ms
76,184 KB
testcase_16 AC 63 ms
75,384 KB
testcase_17 AC 70 ms
76,460 KB
testcase_18 AC 67 ms
75,924 KB
testcase_19 AC 65 ms
75,684 KB
testcase_20 AC 64 ms
75,416 KB
testcase_21 AC 64 ms
75,664 KB
testcase_22 AC 66 ms
75,180 KB
testcase_23 AC 67 ms
76,056 KB
testcase_24 AC 72 ms
76,196 KB
testcase_25 AC 68 ms
75,692 KB
testcase_26 AC 67 ms
76,184 KB
testcase_27 AC 69 ms
76,536 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):
	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

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

print S[-1-mo]
0