結果

問題 No.2766 Delicious Multiply Spice
ユーザー イルカイルカ
提出日時 2024-06-09 23:08:24
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 278 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 83,752 KB
最終ジャッジ日時 2024-06-09 23:08:33
合計ジャッジ時間 6,114 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
58,884 KB
testcase_01 AC 32 ms
52,304 KB
testcase_02 AC 33 ms
52,820 KB
testcase_03 AC 37 ms
53,492 KB
testcase_04 AC 32 ms
53,360 KB
testcase_05 AC 32 ms
53,288 KB
testcase_06 AC 33 ms
52,564 KB
testcase_07 AC 32 ms
52,252 KB
testcase_08 AC 34 ms
52,484 KB
testcase_09 AC 32 ms
53,136 KB
testcase_10 AC 32 ms
53,344 KB
testcase_11 AC 37 ms
58,392 KB
testcase_12 AC 36 ms
59,108 KB
testcase_13 AC 43 ms
63,884 KB
testcase_14 AC 34 ms
52,568 KB
testcase_15 AC 33 ms
52,544 KB
testcase_16 AC 33 ms
54,024 KB
testcase_17 AC 32 ms
52,744 KB
testcase_18 AC 32 ms
53,556 KB
testcase_19 AC 64 ms
75,584 KB
testcase_20 AC 59 ms
70,600 KB
testcase_21 AC 60 ms
75,416 KB
testcase_22 AC 71 ms
75,580 KB
testcase_23 AC 76 ms
75,344 KB
testcase_24 AC 79 ms
75,572 KB
testcase_25 AC 1,772 ms
83,752 KB
testcase_26 AC 353 ms
76,772 KB
testcase_27 AC 326 ms
76,688 KB
testcase_28 AC 516 ms
77,596 KB
testcase_29 AC 205 ms
76,424 KB
testcase_30 AC 67 ms
75,588 KB
testcase_31 TLE -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

def f(n):
    if n == 1:
        return ""
    if n % 2 == 1:
        if f(n//2) is not None:
            return f(n//2) + "A"
    if n % 3 == 1:
        if f(n//3) is not None:
            return f(n//3) + "B"
    else:
        return None

print(f(N))
"🐬"
0