結果

問題 No.2787 グッドスタイン数列?
ユーザー testestesttestestest
提出日時 2023-08-25 16:02:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 463 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 54,056 KB
最終ジャッジ日時 2024-06-14 20:50:22
合計ジャッジ時間 3,126 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,132 KB
testcase_01 AC 33 ms
53,116 KB
testcase_02 AC 31 ms
52,740 KB
testcase_03 WA -
testcase_04 AC 33 ms
52,940 KB
testcase_05 AC 31 ms
52,504 KB
testcase_06 AC 32 ms
52,524 KB
testcase_07 AC 30 ms
53,260 KB
testcase_08 AC 35 ms
52,536 KB
testcase_09 AC 33 ms
52,676 KB
testcase_10 AC 33 ms
52,200 KB
testcase_11 WA -
testcase_12 AC 33 ms
52,152 KB
testcase_13 WA -
testcase_14 AC 32 ms
53,276 KB
testcase_15 AC 31 ms
53,384 KB
testcase_16 AC 32 ms
53,076 KB
testcase_17 AC 32 ms
52,236 KB
testcase_18 AC 33 ms
52,944 KB
testcase_19 AC 34 ms
52,208 KB
testcase_20 WA -
testcase_21 AC 34 ms
52,744 KB
testcase_22 AC 32 ms
52,988 KB
testcase_23 AC 33 ms
52,720 KB
testcase_24 AC 33 ms
52,504 KB
testcase_25 AC 33 ms
51,880 KB
testcase_26 AC 33 ms
52,620 KB
testcase_27 AC 32 ms
53,032 KB
testcase_28 AC 33 ms
53,004 KB
testcase_29 AC 36 ms
52,236 KB
testcase_30 AC 33 ms
53,700 KB
testcase_31 AC 33 ms
53,224 KB
testcase_32 AC 34 ms
52,568 KB
testcase_33 AC 32 ms
52,740 KB
testcase_34 AC 32 ms
52,424 KB
testcase_35 AC 34 ms
52,180 KB
testcase_36 AC 33 ms
52,880 KB
testcase_37 AC 32 ms
52,316 KB
testcase_38 AC 32 ms
52,992 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 AC 33 ms
52,272 KB
testcase_49 AC 33 ms
51,820 KB
testcase_50 AC 35 ms
52,476 KB
testcase_51 AC 32 ms
52,612 KB
testcase_52 AC 32 ms
52,876 KB
testcase_53 AC 33 ms
52,740 KB
testcase_54 AC 34 ms
52,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,B,M=map(int,input().split())
if N==0:
  print("Yes")
  if M>=2:
    print("Yes")
    print(2)
  else:
    print("No")
  exit()

a=[]
while N:
  a.append(N%B)
  N//=B

BB=B+a[0]
a.pop(0)
while len(a) and BB<=2*10**18:
  pos=0
  while a[pos]==0:pos+=1
  a[pos]-=1
  if pos==len(a)-1 and a[pos]==0: a.pop()
  while pos:
    pos-=1
    a[pos]=BB
  BB=BB*2+1

print("Yes")
cnt=2*(BB-B+1)
if len(a)==0 and cnt<M: # <--
  print("Yes")
  print(cnt)
else:
  print("No")
0