結果
問題 |
No.2426 Select Plus or Minus
|
ユーザー |
![]() |
提出日時 | 2023-08-18 22:06:53 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 888 bytes |
コンパイル時間 | 77 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 73,180 KB |
最終ジャッジ日時 | 2024-11-28 07:21:42 |
合計ジャッジ時間 | 5,823 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 36 WA * 5 |
ソースコード
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: 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])