結果

問題 No.2426 Select Plus or Minus
ユーザー moharan627moharan627
提出日時 2023-08-18 22:44:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,010 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 61,952 KB
最終ジャッジ日時 2024-05-06 05:06:33
合計ジャッジ時間 4,851 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,632 KB
testcase_01 AC 42 ms
53,632 KB
testcase_02 AC 46 ms
53,632 KB
testcase_03 AC 51 ms
60,928 KB
testcase_04 AC 54 ms
60,928 KB
testcase_05 AC 48 ms
54,144 KB
testcase_06 AC 47 ms
53,632 KB
testcase_07 AC 54 ms
60,928 KB
testcase_08 AC 54 ms
60,928 KB
testcase_09 AC 54 ms
60,928 KB
testcase_10 AC 50 ms
61,184 KB
testcase_11 AC 51 ms
61,568 KB
testcase_12 AC 49 ms
60,800 KB
testcase_13 AC 51 ms
61,056 KB
testcase_14 AC 51 ms
61,056 KB
testcase_15 AC 50 ms
61,056 KB
testcase_16 AC 46 ms
53,888 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 50 ms
61,952 KB
testcase_21 AC 50 ms
60,928 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 49 ms
60,800 KB
testcase_25 AC 49 ms
61,184 KB
testcase_26 AC 50 ms
60,544 KB
testcase_27 AC 49 ms
60,544 KB
testcase_28 AC 50 ms
60,928 KB
testcase_29 AC 50 ms
61,056 KB
testcase_30 AC 43 ms
53,760 KB
testcase_31 AC 50 ms
61,440 KB
testcase_32 AC 55 ms
61,312 KB
testcase_33 AC 54 ms
60,800 KB
testcase_34 AC 55 ms
61,440 KB
testcase_35 AC 54 ms
60,800 KB
testcase_36 AC 56 ms
61,184 KB
testcase_37 AC 56 ms
61,184 KB
testcase_38 AC 54 ms
60,928 KB
testcase_39 AC 55 ms
60,928 KB
testcase_40 AC 51 ms
54,272 KB
testcase_41 AC 50 ms
60,928 KB
testcase_42 AC 50 ms
60,928 KB
testcase_43 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#sys.setrecursionlimit(10 ** 6)
INF = float('inf')
MOD = 10**9 + 7
MOD2 = 998244353
from collections import defaultdict
def ceil(A,B):
    return -(-A//B)
def solve():
    def II(): return int(sys.stdin.readline())
    def LI(): return list(map(int, sys.stdin.readline().split()))
    def LC(): return list(sys.stdin.readline().rstrip())
    def IC(): return [int(c) for c in sys.stdin.readline().rstrip()]
    def MI(): return map(int, sys.stdin.readline().split())
    N =II()
    n = N
    Ans = []
    while(N!=1):
        if(N%2==0):
            N//=2
            Ans.append("/")
        else:
            N = 3*N+1
            Ans.append("+")
    Ans2 = []
    while(n!=1 and len(Ans2)<=10000):
        if(n%2==0):
            n//=2
            Ans2.append("/")
        else:
            n=3*n-1
            Ans2.append("-")
    if(n==1 and len(Ans2)<=10000):
        print(len(Ans2))
        print(*Ans2,sep="")
    else:
        print(len(Ans))
        print(*Ans,sep="")
    return
solve()
0