結果

問題 No.2766 Delicious Multiply Spice
ユーザー hiro1729hiro1729
提出日時 2024-05-31 21:30:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 521 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 56,784 KB
最終ジャッジ日時 2024-05-31 21:30:39
合計ジャッジ時間 3,168 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,392 KB
testcase_01 AC 43 ms
56,388 KB
testcase_02 AC 46 ms
56,432 KB
testcase_03 AC 49 ms
56,408 KB
testcase_04 AC 45 ms
56,032 KB
testcase_05 AC 46 ms
56,452 KB
testcase_06 AC 45 ms
55,192 KB
testcase_07 AC 42 ms
55,636 KB
testcase_08 AC 44 ms
55,444 KB
testcase_09 AC 44 ms
56,596 KB
testcase_10 AC 44 ms
56,212 KB
testcase_11 AC 43 ms
54,908 KB
testcase_12 AC 44 ms
55,604 KB
testcase_13 AC 46 ms
55,828 KB
testcase_14 AC 43 ms
55,056 KB
testcase_15 AC 43 ms
56,528 KB
testcase_16 AC 59 ms
56,104 KB
testcase_17 AC 43 ms
55,596 KB
testcase_18 AC 44 ms
56,492 KB
testcase_19 AC 43 ms
55,328 KB
testcase_20 AC 43 ms
56,100 KB
testcase_21 AC 43 ms
55,912 KB
testcase_22 AC 44 ms
55,088 KB
testcase_23 AC 44 ms
55,152 KB
testcase_24 AC 47 ms
56,396 KB
testcase_25 AC 43 ms
55,376 KB
testcase_26 AC 44 ms
56,468 KB
testcase_27 AC 43 ms
54,792 KB
testcase_28 AC 47 ms
56,312 KB
testcase_29 AC 44 ms
55,448 KB
testcase_30 AC 47 ms
56,784 KB
testcase_31 AC 47 ms
55,108 KB
testcase_32 AC 45 ms
55,376 KB
testcase_33 AC 45 ms
55,112 KB
testcase_34 AC 43 ms
55,312 KB
testcase_35 AC 47 ms
55,696 KB
testcase_36 AC 49 ms
55,776 KB
testcase_37 AC 48 ms
55,696 KB
testcase_38 AC 44 ms
55,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input
R = range
P = print
def I(): return int(S())
def M(): return map(int, S().split())
def L(): return list(M())
def O(): return list(map(int, open(0).read().split()))
def yn(b): print("Yes" if b else "No")
biga = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
smaa = "abcdefghijklmnopqrstuvwxyz"

from functools import cache

@cache
def f(n):
	if n == 1:
		return ""
	if n % 2 == 1:
		d = f(n // 2)
		if d != None:
			return d + "A"
	if n % 3 == 1:
		d = f(n // 3)
		if d != None:
			return d + "B"
	return None

n = I()
print(f(n))
0