結果

問題 No.2766 Delicious Multiply Spice
ユーザー ButterflvButterflv
提出日時 2024-05-31 21:24:12
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 234 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 91,060 KB
最終ジャッジ日時 2024-05-31 21:24:24
合計ジャッジ時間 11,950 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
60,028 KB
testcase_01 AC 39 ms
52,812 KB
testcase_02 AC 39 ms
51,948 KB
testcase_03 AC 39 ms
52,964 KB
testcase_04 AC 39 ms
52,572 KB
testcase_05 AC 39 ms
52,820 KB
testcase_06 AC 39 ms
51,952 KB
testcase_07 AC 38 ms
52,404 KB
testcase_08 AC 43 ms
52,080 KB
testcase_09 AC 39 ms
52,812 KB
testcase_10 AC 37 ms
52,752 KB
testcase_11 AC 37 ms
53,260 KB
testcase_12 AC 38 ms
53,216 KB
testcase_13 AC 60 ms
69,504 KB
testcase_14 AC 37 ms
52,076 KB
testcase_15 AC 37 ms
53,144 KB
testcase_16 AC 37 ms
52,504 KB
testcase_17 AC 37 ms
51,696 KB
testcase_18 AC 37 ms
52,524 KB
testcase_19 AC 66 ms
75,188 KB
testcase_20 AC 74 ms
75,564 KB
testcase_21 AC 301 ms
76,208 KB
testcase_22 AC 161 ms
76,236 KB
testcase_23 AC 114 ms
76,552 KB
testcase_24 AC 159 ms
76,484 KB
testcase_25 AC 1,500 ms
78,732 KB
testcase_26 AC 450 ms
76,380 KB
testcase_27 AC 391 ms
76,308 KB
testcase_28 AC 870 ms
78,068 KB
testcase_29 AC 843 ms
77,040 KB
testcase_30 AC 1,799 ms
79,296 KB
testcase_31 TLE -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
def dfs(arr, n):
  if n==N:
    print("".join(arr))
    exit()
  elif n>N:
    return
  newArr = arr[:]
  newArr.append("A")
  dfs(newArr, 2*n+1)

  newArr = arr[:]
  newArr.append("B")
  dfs(newArr, 3*n+1)

dfs([], 1)
0