結果

問題 No.2787 グッドスタイン数列?
ユーザー 👑 p-adicp-adic
提出日時 2023-05-18 19:05:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 383 ms / 2,000 ms
コード長 380 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 58,416 KB
最終ジャッジ日時 2024-06-14 20:50:20
合計ジャッジ時間 4,103 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,336 KB
testcase_01 AC 38 ms
52,900 KB
testcase_02 AC 38 ms
52,524 KB
testcase_03 AC 37 ms
53,556 KB
testcase_04 AC 38 ms
53,828 KB
testcase_05 AC 36 ms
52,692 KB
testcase_06 AC 36 ms
52,832 KB
testcase_07 AC 38 ms
52,188 KB
testcase_08 AC 39 ms
52,592 KB
testcase_09 AC 38 ms
52,404 KB
testcase_10 AC 36 ms
53,576 KB
testcase_11 AC 38 ms
52,420 KB
testcase_12 AC 37 ms
52,504 KB
testcase_13 AC 40 ms
52,936 KB
testcase_14 AC 38 ms
53,020 KB
testcase_15 AC 39 ms
52,340 KB
testcase_16 AC 38 ms
53,560 KB
testcase_17 AC 39 ms
52,744 KB
testcase_18 AC 38 ms
52,268 KB
testcase_19 AC 38 ms
52,888 KB
testcase_20 AC 37 ms
52,952 KB
testcase_21 AC 38 ms
52,076 KB
testcase_22 AC 37 ms
52,500 KB
testcase_23 AC 37 ms
53,792 KB
testcase_24 AC 38 ms
52,740 KB
testcase_25 AC 38 ms
52,212 KB
testcase_26 AC 38 ms
52,268 KB
testcase_27 AC 38 ms
53,088 KB
testcase_28 AC 383 ms
58,416 KB
testcase_29 AC 37 ms
52,480 KB
testcase_30 AC 37 ms
52,284 KB
testcase_31 AC 37 ms
52,004 KB
testcase_32 AC 36 ms
52,392 KB
testcase_33 AC 37 ms
52,340 KB
testcase_34 AC 38 ms
52,400 KB
testcase_35 AC 37 ms
52,280 KB
testcase_36 AC 38 ms
52,576 KB
testcase_37 AC 37 ms
54,368 KB
testcase_38 AC 37 ms
52,320 KB
testcase_39 AC 38 ms
52,008 KB
testcase_40 AC 38 ms
52,136 KB
testcase_41 AC 38 ms
53,012 KB
testcase_42 AC 38 ms
52,828 KB
testcase_43 AC 37 ms
52,456 KB
testcase_44 AC 38 ms
53,048 KB
testcase_45 AC 38 ms
52,944 KB
testcase_46 AC 38 ms
52,316 KB
testcase_47 AC 38 ms
52,684 KB
testcase_48 AC 38 ms
52,832 KB
testcase_49 AC 38 ms
53,888 KB
testcase_50 AC 38 ms
53,424 KB
testcase_51 AC 38 ms
52,704 KB
testcase_52 AC 38 ms
52,932 KB
testcase_53 AC 38 ms
53,812 KB
testcase_54 AC 38 ms
52,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

R,P=range,print
N,B,C=map(int,input().split())
f=[0]*64
P("Yes")
for d in R(64):f[d],N=N%B,N//B
c,B,f[0]=f[0]*2,B+f[0],0
def D(d):
	global c,B
	if c>=C:return
	a=B
	B,c=B*2+1,c+B*2+2
	if d>1:
		f[d]-=1
		for e in R(1,d):
			f[e]=a
			for i in R(a):D(e)
	else:f[1]-=1
for d in R(1,64):
	for i in R(f[d]):
		D(d)
		if c>=C:P("No"),exit(0)
c+=2
if c<=C:P("Yes"),P(c),exit(0)
P("No")
0