結果

問題 No.2766 Delicious Multiply Spice
ユーザー june19312june19312
提出日時 2024-05-31 21:34:43
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 337 bytes
コンパイル時間 533 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 144,828 KB
最終ジャッジ日時 2024-12-20 22:40:04
合計ジャッジ時間 31,633 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
59,620 KB
testcase_01 AC 41 ms
135,756 KB
testcase_02 AC 42 ms
59,928 KB
testcase_03 AC 42 ms
135,980 KB
testcase_04 AC 40 ms
58,892 KB
testcase_05 AC 41 ms
134,744 KB
testcase_06 AC 42 ms
59,344 KB
testcase_07 AC 40 ms
136,608 KB
testcase_08 AC 43 ms
60,972 KB
testcase_09 AC 41 ms
135,920 KB
testcase_10 AC 42 ms
59,352 KB
testcase_11 AC 43 ms
135,432 KB
testcase_12 AC 43 ms
60,544 KB
testcase_13 AC 50 ms
144,828 KB
testcase_14 AC 41 ms
59,276 KB
testcase_15 AC 41 ms
53,072 KB
testcase_16 AC 44 ms
52,808 KB
testcase_17 AC 42 ms
52,608 KB
testcase_18 AC 41 ms
54,012 KB
testcase_19 AC 57 ms
74,976 KB
testcase_20 AC 60 ms
75,088 KB
testcase_21 AC 218 ms
75,764 KB
testcase_22 AC 107 ms
75,180 KB
testcase_23 AC 85 ms
75,228 KB
testcase_24 AC 116 ms
75,172 KB
testcase_25 AC 1,039 ms
77,736 KB
testcase_26 AC 276 ms
75,700 KB
testcase_27 AC 255 ms
75,496 KB
testcase_28 AC 463 ms
76,200 KB
testcase_29 AC 526 ms
76,516 KB
testcase_30 AC 1,370 ms
78,828 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
sys.setrecursionlimit(10**6)
import pypyjit
pypyjit.set_param('max_unroll_recursion=-1')

N = int(input())

def dfs(x,y):
    if x >= N:
        if x == N:
            print("".join(y))
            exit()
        return
    y.append("A")
    dfs(x*2+1,y)
    y.pop()
    y.append("B")
    dfs(x*3+1,y)
    y.pop()

dfs(1,[])

0