結果

問題 No.2426 Select Plus or Minus
ユーザー taro2023taro2023
提出日時 2023-08-18 22:55:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 524 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 818,156 KB
最終ジャッジ日時 2024-11-28 09:19:20
合計ジャッジ時間 46,994 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 32 ms
10,752 KB
testcase_04 TLE -
testcase_05 AC 39 ms
10,752 KB
testcase_06 AC 35 ms
10,752 KB
testcase_07 AC 33 ms
10,752 KB
testcase_08 WA -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 37 ms
10,752 KB
testcase_12 WA -
testcase_13 AC 36 ms
10,752 KB
testcase_14 AC 34 ms
10,624 KB
testcase_15 AC 34 ms
10,624 KB
testcase_16 AC 33 ms
10,752 KB
testcase_17 AC 34 ms
10,624 KB
testcase_18 TLE -
testcase_19 WA -
testcase_20 WA -
testcase_21 TLE -
testcase_22 WA -
testcase_23 WA -
testcase_24 TLE -
testcase_25 AC 37 ms
10,752 KB
testcase_26 AC 39 ms
10,752 KB
testcase_27 AC 35 ms
10,624 KB
testcase_28 TLE -
testcase_29 AC 37 ms
10,624 KB
testcase_30 AC 38 ms
10,752 KB
testcase_31 AC 36 ms
10,752 KB
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 AC 59 ms
10,752 KB
testcase_38 TLE -
testcase_39 TLE -
testcase_40 WA -
testcase_41 AC 37 ms
10,624 KB
testcase_42 AC 33 ms
10,752 KB
testcase_43 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**9)
a=int(input())
def c(b,result=None,i=0):
    if result is None:
        result=[]
    if b==1:
        return result,i
    else:
        if b%2==0:
            b=b/2
            result.append("/")
            i+=1
        else:
            if b!=7:
                b=3*b-1
                result.append("-")
                i+=1
            else:
                b=3*b+1
                result.append("+")
                i+=1
        return c(b,result,i)
d,e=c(a)
print(e)
print(*d)
0