結果

問題 No.2766 Delicious Multiply Spice
ユーザー hato336hato336
提出日時 2024-05-31 21:23:40
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 467 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 101,176 KB
最終ジャッジ日時 2024-05-31 21:23:57
合計ジャッジ時間 15,091 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
92,992 KB
testcase_01 AC 127 ms
85,972 KB
testcase_02 AC 130 ms
85,780 KB
testcase_03 AC 129 ms
86,016 KB
testcase_04 AC 129 ms
85,788 KB
testcase_05 AC 133 ms
85,976 KB
testcase_06 AC 130 ms
85,572 KB
testcase_07 AC 131 ms
85,924 KB
testcase_08 AC 133 ms
85,772 KB
testcase_09 AC 131 ms
85,740 KB
testcase_10 AC 131 ms
85,752 KB
testcase_11 AC 156 ms
85,712 KB
testcase_12 AC 133 ms
85,892 KB
testcase_13 AC 157 ms
89,712 KB
testcase_14 AC 128 ms
85,580 KB
testcase_15 AC 130 ms
85,652 KB
testcase_16 AC 130 ms
85,620 KB
testcase_17 AC 131 ms
85,876 KB
testcase_18 AC 130 ms
85,632 KB
testcase_19 AC 208 ms
89,836 KB
testcase_20 AC 165 ms
89,860 KB
testcase_21 AC 397 ms
89,984 KB
testcase_22 AC 251 ms
90,012 KB
testcase_23 AC 216 ms
89,968 KB
testcase_24 AC 272 ms
89,924 KB
testcase_25 AC 1,627 ms
91,272 KB
testcase_26 AC 519 ms
89,936 KB
testcase_27 AC 490 ms
90,200 KB
testcase_28 AC 973 ms
91,012 KB
testcase_29 AC 907 ms
90,328 KB
testcase_30 TLE -
testcase_31 TLE -
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())
def calc(x,seq):
    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