結果

問題 No.2426 Select Plus or Minus
ユーザー Cecil
提出日時 2023-08-18 21:57:30
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 625 bytes
コンパイル時間 78 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 19,840 KB
最終ジャッジ日時 2024-11-28 06:57:20
合計ジャッジ時間 4,070 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 35 WA * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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:
            dic[v//2] = dic[v] + "/"
            dfs(v//2)
        elif v > 0:
            dic[3*v+1] = dic[v] + "+"
            dfs(3*v+1)
            dic[3*v-1] = dic[v] + "-"
            dfs(3*v-1)
        else:
            return
    m = n
    dfs(m)
    #print(ans)
    print(len(ans[0]))
    print(ans[0])
except:
    print(len(ans[0]))
    print(ans[0])
0