結果

問題 No.2766 Delicious Multiply Spice
ユーザー hato336hato336
提出日時 2024-05-31 21:37:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 556 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,592 KB
実行使用メモリ 86,040 KB
最終ジャッジ日時 2024-05-31 21:37:17
合計ジャッジ時間 6,315 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
85,948 KB
testcase_01 AC 122 ms
85,652 KB
testcase_02 AC 123 ms
85,748 KB
testcase_03 AC 125 ms
85,820 KB
testcase_04 AC 125 ms
85,776 KB
testcase_05 AC 121 ms
85,796 KB
testcase_06 AC 122 ms
85,872 KB
testcase_07 AC 122 ms
85,916 KB
testcase_08 AC 136 ms
85,792 KB
testcase_09 AC 132 ms
85,636 KB
testcase_10 AC 129 ms
85,688 KB
testcase_11 AC 124 ms
85,856 KB
testcase_12 AC 127 ms
85,836 KB
testcase_13 AC 124 ms
85,616 KB
testcase_14 AC 123 ms
85,976 KB
testcase_15 AC 122 ms
85,772 KB
testcase_16 AC 120 ms
85,892 KB
testcase_17 AC 122 ms
85,700 KB
testcase_18 AC 124 ms
85,708 KB
testcase_19 AC 122 ms
85,800 KB
testcase_20 AC 120 ms
85,984 KB
testcase_21 AC 135 ms
85,904 KB
testcase_22 AC 125 ms
85,816 KB
testcase_23 AC 122 ms
85,856 KB
testcase_24 AC 126 ms
85,788 KB
testcase_25 AC 132 ms
85,872 KB
testcase_26 AC 147 ms
85,928 KB
testcase_27 AC 123 ms
85,752 KB
testcase_28 AC 122 ms
85,844 KB
testcase_29 AC 134 ms
85,820 KB
testcase_30 AC 124 ms
85,620 KB
testcase_31 AC 125 ms
86,012 KB
testcase_32 AC 127 ms
85,944 KB
testcase_33 AC 127 ms
85,852 KB
testcase_34 AC 128 ms
86,040 KB
testcase_35 AC 123 ms
85,780 KB
testcase_36 AC 123 ms
85,756 KB
testcase_37 AC 123 ms
85,976 KB
testcase_38 AC 135 ms
85,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
sys.setrecursionlimit(10**9)
#sys.set_int_max_str_digits(0)
#input = sys.stdin.readline
#n = int(input())
#alist = list(map(int,input().split()))
#alist = []
#s = input()
n = int(input())
s = set()
def calc(x,seq):
    
    if x == 1:
        seq.reverse()
        exit(print(''.join(seq)))
        return
    elif x <= 0:
        return
    x -= 1
    if x % 2 == 0:
        calc(x//2,seq + ['A'])
    if x % 3 == 0:
        calc(x//3,seq + ['B'])
calc(n,[])
0