結果

問題 No.2766 Delicious Multiply Spice
ユーザー moon17moon17
提出日時 2024-05-31 23:03:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 468 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,584 KB
実行使用メモリ 54,676 KB
最終ジャッジ日時 2024-05-31 23:03:54
合計ジャッジ時間 2,806 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,492 KB
testcase_01 AC 40 ms
52,132 KB
testcase_02 AC 40 ms
53,976 KB
testcase_03 AC 35 ms
52,960 KB
testcase_04 AC 36 ms
52,344 KB
testcase_05 AC 37 ms
52,204 KB
testcase_06 AC 40 ms
52,816 KB
testcase_07 AC 36 ms
52,436 KB
testcase_08 AC 37 ms
52,872 KB
testcase_09 AC 37 ms
53,040 KB
testcase_10 AC 35 ms
52,884 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 38 ms
52,552 KB
testcase_14 AC 38 ms
52,808 KB
testcase_15 AC 36 ms
52,828 KB
testcase_16 AC 36 ms
53,816 KB
testcase_17 AC 40 ms
52,468 KB
testcase_18 AC 37 ms
53,552 KB
testcase_19 WA -
testcase_20 AC 38 ms
52,932 KB
testcase_21 AC 35 ms
52,668 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 40 ms
54,164 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 37 ms
53,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
d={1:0}
INF=1<<60
def f(x):
  if x in d:
    return d[x]
  d[x]=INF
  if (x-1)%2==0:
    nx=(x-1)//2
    if (nx-1)%2==0 or (nx-1)%3==0:
      d[x]=min(d[x],f((x-1)//2)+1)
  if (x-1)%3==0:
    nx=(x-1)//3
    if (nx-1)%2==0 or (nx-1)%3==0:
      d[x]=min(d[x],f((x-1)//3)+1)
  return d[x]
f(n)
c=[0]*len(d)
for k,v in d.items():
  if v!=INF:
    c[v]=k
ans=[]
for i,j in zip(c,c[1:]):
  if i*2+1==j:
    ans+='A',
  else:
    ans+='B',
print(*ans,sep='')
0