結果

問題 No.2766 Delicious Multiply Spice
ユーザー hato336hato336
提出日時 2024-05-31 21:33:33
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 520 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 430,940 KB
最終ジャッジ日時 2024-05-31 21:33:46
合計ジャッジ時間 9,236 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
92,812 KB
testcase_01 AC 163 ms
85,932 KB
testcase_02 AC 133 ms
85,844 KB
testcase_03 AC 134 ms
85,860 KB
testcase_04 AC 129 ms
85,708 KB
testcase_05 AC 132 ms
85,780 KB
testcase_06 AC 130 ms
85,868 KB
testcase_07 AC 129 ms
85,680 KB
testcase_08 AC 132 ms
85,856 KB
testcase_09 AC 132 ms
85,912 KB
testcase_10 AC 131 ms
85,512 KB
testcase_11 AC 134 ms
85,640 KB
testcase_12 AC 128 ms
85,724 KB
testcase_13 AC 154 ms
89,520 KB
testcase_14 AC 129 ms
85,872 KB
testcase_15 AC 129 ms
85,852 KB
testcase_16 AC 133 ms
85,748 KB
testcase_17 AC 129 ms
85,880 KB
testcase_18 AC 136 ms
85,892 KB
testcase_19 AC 229 ms
94,820 KB
testcase_20 AC 194 ms
96,716 KB
testcase_21 AC 921 ms
258,872 KB
testcase_22 AC 398 ms
165,816 KB
testcase_23 AC 260 ms
117,364 KB
testcase_24 AC 403 ms
176,068 KB
testcase_25 TLE -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
権限があれば一括ダウンロードができます

ソースコード

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 in s:
        return
    s.add(x)
    if x == n:
        exit(print(''.join(seq)))
        return
    elif x > n:
        return
    calc(2*x + 1,seq + ['A'])
    calc(3*x + 1,seq + ['B'])
calc(1,[])
0