結果

問題 No.2426 Select Plus or Minus
ユーザー gr1msl3ygr1msl3y
提出日時 2023-08-24 23:17:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 34 ms / 2,000 ms
コード長 193 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 82,664 KB
実行使用メモリ 53,564 KB
最終ジャッジ日時 2024-06-02 12:20:22
合計ジャッジ時間 3,178 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,824 KB
testcase_01 AC 33 ms
52,004 KB
testcase_02 AC 31 ms
52,428 KB
testcase_03 AC 31 ms
52,072 KB
testcase_04 AC 33 ms
52,488 KB
testcase_05 AC 32 ms
52,472 KB
testcase_06 AC 31 ms
52,488 KB
testcase_07 AC 31 ms
53,032 KB
testcase_08 AC 32 ms
51,820 KB
testcase_09 AC 31 ms
52,072 KB
testcase_10 AC 32 ms
51,868 KB
testcase_11 AC 31 ms
51,812 KB
testcase_12 AC 32 ms
52,084 KB
testcase_13 AC 32 ms
53,564 KB
testcase_14 AC 30 ms
52,556 KB
testcase_15 AC 33 ms
51,948 KB
testcase_16 AC 33 ms
52,356 KB
testcase_17 AC 32 ms
52,416 KB
testcase_18 AC 33 ms
53,124 KB
testcase_19 AC 31 ms
52,068 KB
testcase_20 AC 32 ms
52,704 KB
testcase_21 AC 31 ms
51,880 KB
testcase_22 AC 31 ms
52,264 KB
testcase_23 AC 31 ms
52,156 KB
testcase_24 AC 31 ms
52,568 KB
testcase_25 AC 31 ms
52,376 KB
testcase_26 AC 31 ms
53,128 KB
testcase_27 AC 31 ms
52,072 KB
testcase_28 AC 32 ms
52,564 KB
testcase_29 AC 32 ms
52,608 KB
testcase_30 AC 30 ms
52,344 KB
testcase_31 AC 30 ms
52,500 KB
testcase_32 AC 32 ms
51,760 KB
testcase_33 AC 32 ms
52,668 KB
testcase_34 AC 32 ms
52,620 KB
testcase_35 AC 33 ms
52,864 KB
testcase_36 AC 31 ms
53,504 KB
testcase_37 AC 32 ms
53,072 KB
testcase_38 AC 31 ms
52,660 KB
testcase_39 AC 31 ms
51,816 KB
testcase_40 AC 30 ms
52,452 KB
testcase_41 AC 32 ms
52,676 KB
testcase_42 AC 32 ms
51,904 KB
testcase_43 AC 31 ms
52,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
ans=[]
while N>1:
	if N%2:
		if N%4==1:
			ans.append('+')
			N=3*N+1
		else:
			ans.append('-')
			N=3*N-1
	else:
		ans.append('/')
		N//=2

print(len(ans))
print(''.join(ans))
0