結果

問題 No.2766 Delicious Multiply Spice
ユーザー titiatitia
提出日時 2024-05-31 22:02:29
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 344 bytes
コンパイル時間 529 ms
コンパイル使用メモリ 82,728 KB
実行使用メモリ 84,688 KB
最終ジャッジ日時 2024-05-31 22:02:43
合計ジャッジ時間 6,110 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
59,012 KB
testcase_01 AC 36 ms
52,252 KB
testcase_02 AC 36 ms
52,988 KB
testcase_03 AC 35 ms
51,952 KB
testcase_04 AC 35 ms
52,156 KB
testcase_05 AC 34 ms
51,872 KB
testcase_06 AC 36 ms
52,284 KB
testcase_07 AC 36 ms
52,480 KB
testcase_08 AC 37 ms
51,876 KB
testcase_09 AC 36 ms
52,176 KB
testcase_10 AC 35 ms
52,552 KB
testcase_11 AC 40 ms
59,240 KB
testcase_12 AC 50 ms
63,980 KB
testcase_13 AC 50 ms
65,680 KB
testcase_14 AC 35 ms
52,204 KB
testcase_15 AC 35 ms
53,020 KB
testcase_16 AC 33 ms
53,256 KB
testcase_17 AC 37 ms
52,424 KB
testcase_18 AC 39 ms
52,696 KB
testcase_19 AC 60 ms
73,972 KB
testcase_20 AC 62 ms
75,180 KB
testcase_21 AC 142 ms
75,336 KB
testcase_22 AC 264 ms
76,052 KB
testcase_23 AC 256 ms
76,508 KB
testcase_24 AC 100 ms
76,116 KB
testcase_25 TLE -
testcase_26 AC 1,165 ms
79,060 KB
testcase_27 AC 1,134 ms
79,144 KB
testcase_28 AC 312 ms
76,656 KB
testcase_29 AC 1,784 ms
84,016 KB
testcase_30 AC 72 ms
75,652 KB
testcase_31 TLE -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())

def calc(x):
    if x==1:
        return []

    if (x-1)%3==0:
        if calc((x-1)//3)!=False:
            return ["B"]+calc((x-1)//3)
    if (x-1)%2==0:
        if calc((x-1)//2)!=False:
            return ["A"]+calc((x-1)//2)

    return False

ANS=calc(N)

print("".join(ANS[::-1]))
0