結果
問題 | No.2426 Select Plus or Minus |
ユーザー | Nikkuniku029 |
提出日時 | 2023-08-18 21:34:26 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 969 bytes |
コンパイル時間 | 143 ms |
コンパイル使用メモリ | 82,180 KB |
実行使用メモリ | 1,019,852 KB |
最終ジャッジ日時 | 2024-11-28 05:55:47 |
合計ジャッジ時間 | 76,803 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
59,008 KB |
testcase_01 | MLE | - |
testcase_02 | AC | 40 ms
58,496 KB |
testcase_03 | MLE | - |
testcase_04 | MLE | - |
testcase_05 | TLE | - |
testcase_06 | AC | 41 ms
58,880 KB |
testcase_07 | MLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | MLE | - |
testcase_12 | TLE | - |
testcase_13 | MLE | - |
testcase_14 | TLE | - |
testcase_15 | MLE | - |
testcase_16 | AC | 136 ms
108,532 KB |
testcase_17 | MLE | - |
testcase_18 | TLE | - |
testcase_19 | MLE | - |
testcase_20 | TLE | - |
testcase_21 | MLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | MLE | - |
testcase_26 | AC | 40 ms
59,136 KB |
testcase_27 | MLE | - |
testcase_28 | AC | 47 ms
66,304 KB |
testcase_29 | MLE | - |
testcase_30 | AC | 135 ms
109,760 KB |
testcase_31 | MLE | - |
testcase_32 | AC | 885 ms
293,928 KB |
testcase_33 | TLE | - |
testcase_34 | AC | 1,360 ms
402,456 KB |
testcase_35 | TLE | - |
testcase_36 | TLE | - |
testcase_37 | TLE | - |
testcase_38 | TLE | - |
testcase_39 | TLE | - |
testcase_40 | TLE | - |
testcase_41 | AC | 41 ms
53,504 KB |
testcase_42 | AC | 42 ms
53,888 KB |
testcase_43 | MLE | - |
ソースコード
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]))