結果

問題 No.2766 Delicious Multiply Spice
ユーザー shobonvipshobonvip
提出日時 2024-05-31 22:36:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 159 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 54,076 KB
最終ジャッジ日時 2024-05-31 22:36:46
合計ジャッジ時間 3,016 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,508 KB
testcase_01 AC 38 ms
52,332 KB
testcase_02 AC 39 ms
52,556 KB
testcase_03 WA -
testcase_04 AC 39 ms
52,276 KB
testcase_05 AC 39 ms
52,152 KB
testcase_06 AC 37 ms
51,624 KB
testcase_07 AC 38 ms
51,752 KB
testcase_08 AC 38 ms
51,748 KB
testcase_09 AC 38 ms
51,692 KB
testcase_10 AC 39 ms
51,904 KB
testcase_11 AC 38 ms
52,768 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 37 ms
51,940 KB
testcase_15 AC 37 ms
52,052 KB
testcase_16 AC 37 ms
53,436 KB
testcase_17 AC 38 ms
52,452 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 39 ms
53,308 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = []
while n > 1:
	if (n - 1) % 2 == 0:
		a.append('A')
		n = (n - 1) // 2
	else:
		a.append('B')
		n = (n - 1) // 3
print(''.join(a[::-1]))
0