結果

問題 No.2766 Delicious Multiply Spice
ユーザー titiatitia
提出日時 2024-05-31 22:02:29
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 344 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 81,964 KB
実行使用メモリ 148,108 KB
最終ジャッジ日時 2024-12-20 23:28:26
合計ジャッジ時間 36,805 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
58,760 KB
testcase_01 AC 42 ms
135,476 KB
testcase_02 AC 41 ms
58,816 KB
testcase_03 AC 41 ms
135,292 KB
testcase_04 AC 39 ms
57,924 KB
testcase_05 AC 41 ms
136,072 KB
testcase_06 AC 41 ms
58,448 KB
testcase_07 AC 39 ms
136,796 KB
testcase_08 AC 41 ms
58,336 KB
testcase_09 AC 41 ms
135,584 KB
testcase_10 AC 41 ms
57,524 KB
testcase_11 AC 45 ms
141,792 KB
testcase_12 AC 57 ms
69,896 KB
testcase_13 AC 58 ms
148,108 KB
testcase_14 AC 42 ms
58,444 KB
testcase_15 AC 40 ms
135,872 KB
testcase_16 AC 39 ms
59,624 KB
testcase_17 AC 42 ms
54,164 KB
testcase_18 AC 41 ms
52,076 KB
testcase_19 AC 70 ms
73,608 KB
testcase_20 AC 66 ms
75,488 KB
testcase_21 AC 186 ms
75,440 KB
testcase_22 AC 357 ms
76,612 KB
testcase_23 AC 349 ms
76,516 KB
testcase_24 AC 120 ms
75,472 KB
testcase_25 TLE -
testcase_26 AC 1,497 ms
79,084 KB
testcase_27 AC 1,504 ms
79,232 KB
testcase_28 AC 403 ms
76,356 KB
testcase_29 TLE -
testcase_30 AC 78 ms
75,264 KB
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
権限があれば一括ダウンロードができます

ソースコード

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