結果

問題 No.2426 Select Plus or Minus
ユーザー Cecil
提出日時 2023-08-18 22:10:05
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 882 bytes
コンパイル時間 125 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 73,184 KB
最終ジャッジ日時 2024-11-28 07:32:48
合計ジャッジ時間 6,612 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 36 WA * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict as dd
import sys
sys.setrecursionlimit(10 ** 4)

n = int(input())

dic = dd(lambda:"")
ans = list()

try:
    def dfs(v):
        if v == 1:
            ans.append(dic[v])
            return
        if v > 0 and v % 2 == 0:
            if dic[v//2] == "":
                dic[v//2] = dic[v] + "/"
                dfs(v//2)
            else:
                return
        elif v > 0:
            if dic[3*v-1] == "":
                dic[3*v-1] = dic[v] + "-"
                dfs(3*v-1)
            else:
                return
            if dic[3*v+1] == "":
                dic[3*v+1] = dic[v] + "+"
                dfs(3*v+1)
            else:
                return
        else:
            return
    m = n
    dfs(m)
    #print(ans)
    print(len(ans[0]))
    print(ans[0])
except:
    #print(ans)
    print(len(ans[0]))
    print(ans[0])
0