結果

問題 No.2766 Delicious Multiply Spice
ユーザー ShirotsumeShirotsume
提出日時 2024-05-31 21:33:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 604 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 57,464 KB
最終ジャッジ日時 2024-05-31 21:33:50
合計ジャッジ時間 3,434 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
55,584 KB
testcase_01 AC 44 ms
56,752 KB
testcase_02 AC 45 ms
56,136 KB
testcase_03 AC 50 ms
56,836 KB
testcase_04 AC 44 ms
56,120 KB
testcase_05 AC 45 ms
55,328 KB
testcase_06 AC 45 ms
56,844 KB
testcase_07 AC 44 ms
55,832 KB
testcase_08 AC 46 ms
56,004 KB
testcase_09 AC 45 ms
55,652 KB
testcase_10 AC 46 ms
57,464 KB
testcase_11 AC 51 ms
56,664 KB
testcase_12 AC 44 ms
56,272 KB
testcase_13 AC 46 ms
56,036 KB
testcase_14 AC 48 ms
55,596 KB
testcase_15 AC 48 ms
55,872 KB
testcase_16 AC 48 ms
55,936 KB
testcase_17 AC 48 ms
56,924 KB
testcase_18 AC 49 ms
56,236 KB
testcase_19 AC 44 ms
56,080 KB
testcase_20 AC 46 ms
56,400 KB
testcase_21 AC 44 ms
56,420 KB
testcase_22 AC 44 ms
55,448 KB
testcase_23 AC 44 ms
55,532 KB
testcase_24 AC 45 ms
56,056 KB
testcase_25 AC 43 ms
55,672 KB
testcase_26 AC 46 ms
56,176 KB
testcase_27 AC 48 ms
56,516 KB
testcase_28 AC 45 ms
55,400 KB
testcase_29 AC 48 ms
56,220 KB
testcase_30 AC 46 ms
56,220 KB
testcase_31 AC 45 ms
56,492 KB
testcase_32 AC 46 ms
56,644 KB
testcase_33 AC 45 ms
55,188 KB
testcase_34 AC 46 ms
56,104 KB
testcase_35 AC 44 ms
55,540 KB
testcase_36 AC 50 ms
56,020 KB
testcase_37 AC 46 ms
56,068 KB
testcase_38 AC 44 ms
56,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, time, random
from collections import deque, Counter, defaultdict
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 61 - 1
mod = 998244353

def f(x, S):
    if x == 1:
        return S
    if (x - 1) // 2 >= 1 and (x - 1) % 2 == 0:
        p = f((x - 1) // 2, S + 'A')
        if p is not None:
            return p
    if (x - 1) // 3 >= 1 and (x - 1) % 3 == 0:
        p = f((x - 1) // 3, S + 'B')
        if p is not None:
            return p
        
    return None

print(f(ii(), '')[::-1])
0