結果

問題 No.2766 Delicious Multiply Spice
ユーザー KudeKude
提出日時 2024-05-31 21:39:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 389 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 56,624 KB
最終ジャッジ日時 2024-12-20 22:51:37
合計ジャッジ時間 3,494 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
56,064 KB
testcase_01 AC 49 ms
55,612 KB
testcase_02 AC 49 ms
55,208 KB
testcase_03 AC 46 ms
54,788 KB
testcase_04 AC 47 ms
54,572 KB
testcase_05 AC 47 ms
55,500 KB
testcase_06 AC 50 ms
55,536 KB
testcase_07 AC 52 ms
55,416 KB
testcase_08 AC 48 ms
54,916 KB
testcase_09 AC 49 ms
55,824 KB
testcase_10 AC 49 ms
54,656 KB
testcase_11 AC 50 ms
56,096 KB
testcase_12 AC 47 ms
55,260 KB
testcase_13 AC 48 ms
56,624 KB
testcase_14 AC 48 ms
56,420 KB
testcase_15 AC 47 ms
56,592 KB
testcase_16 AC 47 ms
55,492 KB
testcase_17 AC 48 ms
55,824 KB
testcase_18 AC 47 ms
55,868 KB
testcase_19 AC 46 ms
56,116 KB
testcase_20 AC 46 ms
55,524 KB
testcase_21 AC 46 ms
55,276 KB
testcase_22 AC 47 ms
55,536 KB
testcase_23 AC 48 ms
55,380 KB
testcase_24 AC 49 ms
54,652 KB
testcase_25 AC 48 ms
55,196 KB
testcase_26 AC 46 ms
55,384 KB
testcase_27 AC 48 ms
56,048 KB
testcase_28 AC 48 ms
55,696 KB
testcase_29 AC 46 ms
54,788 KB
testcase_30 AC 49 ms
55,876 KB
testcase_31 AC 49 ms
54,572 KB
testcase_32 AC 48 ms
54,724 KB
testcase_33 AC 48 ms
55,604 KB
testcase_34 AC 48 ms
55,968 KB
testcase_35 AC 47 ms
55,444 KB
testcase_36 AC 48 ms
55,496 KB
testcase_37 AC 50 ms
55,360 KB
testcase_38 AC 52 ms
55,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import cache
@cache
def f(n):
    if n == 1:
        return True
    n -= 1
    return n % 2 == 0 and f(n // 2) or n % 3 == 0 and f(n // 3)

n = int(input())
ans = []
while n != 1:
    n -= 1
    if n % 2 == 0 and f(n // 2):
        n //= 2
        ans.append('A')
    else:
        assert n % 3 == 0
        n //= 3
        ans.append('B')
ans.reverse()
print(''.join(ans))
0