結果

問題 No.2766 Delicious Multiply Spice
ユーザー shobonvipshobonvip
提出日時 2024-05-31 22:48:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 471 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-05-31 22:48:17
合計ジャッジ時間 2,676 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

n = int(input())
d = dict()
d[1] = 1

def calc(x):
	if x in d: return 1
	if (x-1) % 2 == 0 and calc((x-1) // 2) == 1:
		d[x] = 1
		return 1
	if (x-1) % 3 == 0 and calc((x-1) // 3) == 1:
		d[x] = 1
		return 1
	d[x] = 0
	return 0

assert(calc(n))

x = n
a = []
while x > 1:
	if (x - 1) % 2 == 0 and calc((x-1) // 2) == 1:
		x = (x-1) // 2
		a.append('A')
	else:
		assert (x - 1) % 3 == 0 and calc((x - 1) // 3) == 1
		x = (x-1) // 3
		a.append('B')

print(''.join(a[::-1]))
0