結果
問題 | No.2426 Select Plus or Minus |
ユーザー | Nikkuniku029 |
提出日時 | 2023-08-18 21:34:26 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 969 bytes |
コンパイル時間 | 216 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 497,592 KB |
最終ジャッジ日時 | 2024-05-06 03:28:06 |
合計ジャッジ時間 | 4,703 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
59,008 KB |
testcase_01 | AC | 39 ms
53,504 KB |
testcase_02 | AC | 39 ms
53,376 KB |
testcase_03 | AC | 40 ms
53,504 KB |
testcase_04 | AC | 573 ms
258,200 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
ソースコード
from collections import deque from collections import defaultdict N = int(input()) d = defaultdict(lambda: -1) pre = defaultdict(lambda: -1) seen = defaultdict(lambda: False) s = N q = deque([s]) while q: v = q.popleft() if v == 1: break if v % 2 == 0: next = v//2 if seen[next]: continue q.append(next) pre[next] = v seen[next] = True else: next = 3*v-1 next2 = 3*v+1 if not seen[next]: q.append(next) seen[next] = True pre[next] = v if not seen[next2] and next2 <= 10**18: q.append(next2) seen[next2] = True pre[next2] = v now = 1 ans = [] while now != N: past = pre[now] if past % 2 == 0: ans.append('/') else: if 3*past-1 == now: ans.append('-') else: ans.append('+') now = past print(len(ans)) print(''.join(ans[::-1]))