結果

問題 No.2426 Select Plus or Minus
ユーザー tassei903tassei903
提出日時 2023-08-15 04:58:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 385 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 54,808 KB
最終ジャッジ日時 2024-11-27 05:41:07
合計ジャッジ時間 4,047 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,580 KB
testcase_01 AC 37 ms
53,060 KB
testcase_02 AC 36 ms
52,524 KB
testcase_03 AC 34 ms
52,752 KB
testcase_04 AC 37 ms
52,736 KB
testcase_05 WA -
testcase_06 AC 35 ms
52,452 KB
testcase_07 AC 35 ms
53,656 KB
testcase_08 AC 35 ms
52,076 KB
testcase_09 AC 35 ms
53,560 KB
testcase_10 AC 35 ms
52,536 KB
testcase_11 AC 37 ms
53,276 KB
testcase_12 AC 37 ms
53,772 KB
testcase_13 AC 38 ms
52,596 KB
testcase_14 AC 38 ms
53,216 KB
testcase_15 AC 37 ms
53,084 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 35 ms
52,964 KB
testcase_20 AC 36 ms
53,144 KB
testcase_21 AC 36 ms
52,028 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 36 ms
52,072 KB
testcase_25 AC 36 ms
53,096 KB
testcase_26 AC 35 ms
52,188 KB
testcase_27 AC 36 ms
53,284 KB
testcase_28 AC 35 ms
53,820 KB
testcase_29 AC 34 ms
53,448 KB
testcase_30 AC 33 ms
52,960 KB
testcase_31 AC 34 ms
52,700 KB
testcase_32 AC 35 ms
52,728 KB
testcase_33 AC 35 ms
53,108 KB
testcase_34 AC 35 ms
53,564 KB
testcase_35 AC 35 ms
52,736 KB
testcase_36 AC 35 ms
52,336 KB
testcase_37 AC 36 ms
52,672 KB
testcase_38 AC 36 ms
52,824 KB
testcase_39 AC 36 ms
53,352 KB
testcase_40 AC 37 ms
53,988 KB
testcase_41 AC 36 ms
52,608 KB
testcase_42 AC 36 ms
52,864 KB
testcase_43 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

ans = []
def f(n, d):
    if d >= 10**4:
        return -1
    elif n == 1:
        print(len(ans))
        print("".join(ans))
        exit()
    if n % 2:
        ans.append("+")
        f(n * 3 + 1, d+1)
        ans.pop()
        ans.append("-")
        f(n * 3 - 1, d+1)
        ans.pop()
    else:
        ans.append("/")
        f(n//2, d+1)
        ans.pop()

f(int(input()), 0)
0