結果

問題 No.2426 Select Plus or Minus
ユーザー shobonvipshobonvip
提出日時 2023-08-18 03:06:39
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 312 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 82,088 KB
実行使用メモリ 54,060 KB
最終ジャッジ日時 2024-11-27 05:58:06
合計ジャッジ時間 3,722 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,296 KB
testcase_01 AC 36 ms
53,320 KB
testcase_02 AC 36 ms
53,052 KB
testcase_03 AC 36 ms
53,424 KB
testcase_04 AC 37 ms
52,604 KB
testcase_05 AC 37 ms
52,608 KB
testcase_06 AC 37 ms
53,076 KB
testcase_07 AC 37 ms
52,696 KB
testcase_08 AC 36 ms
52,748 KB
testcase_09 AC 37 ms
52,104 KB
testcase_10 AC 37 ms
52,956 KB
testcase_11 AC 39 ms
52,820 KB
testcase_12 AC 37 ms
52,896 KB
testcase_13 WA -
testcase_14 AC 38 ms
52,504 KB
testcase_15 WA -
testcase_16 AC 38 ms
52,444 KB
testcase_17 AC 38 ms
54,060 KB
testcase_18 AC 37 ms
52,784 KB
testcase_19 AC 39 ms
53,256 KB
testcase_20 AC 37 ms
52,904 KB
testcase_21 AC 37 ms
52,848 KB
testcase_22 AC 37 ms
52,560 KB
testcase_23 AC 38 ms
52,892 KB
testcase_24 AC 37 ms
52,404 KB
testcase_25 AC 38 ms
53,092 KB
testcase_26 AC 38 ms
52,092 KB
testcase_27 AC 38 ms
51,832 KB
testcase_28 AC 38 ms
52,288 KB
testcase_29 AC 37 ms
52,944 KB
testcase_30 AC 36 ms
53,496 KB
testcase_31 AC 36 ms
52,484 KB
testcase_32 AC 36 ms
53,900 KB
testcase_33 AC 37 ms
53,492 KB
testcase_34 AC 36 ms
53,356 KB
testcase_35 AC 37 ms
53,520 KB
testcase_36 AC 37 ms
53,888 KB
testcase_37 AC 37 ms
52,052 KB
testcase_38 AC 36 ms
53,536 KB
testcase_39 AC 36 ms
52,080 KB
testcase_40 AC 36 ms
53,484 KB
testcase_41 AC 35 ms
51,772 KB
testcase_42 AC 36 ms
52,220 KB
testcase_43 AC 37 ms
52,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
sosa=""
cnt = 0
for i in range(10000):
    if N%2 == 0:
        N//=2
        sosa=sosa+"/"
    else:
        if i%2 == 0:
            N=N*3+1
            sosa=sosa+"+"
        else:
            N=N*3-1
            sosa=sosa+"-"
    cnt += 1
    if N==1:
        break
print(len(sosa))
print(sosa)
0