結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
56,156 KB
testcase_01 AC 48 ms
55,448 KB
testcase_02 AC 50 ms
56,508 KB
testcase_03 AC 49 ms
55,912 KB
testcase_04 AC 50 ms
56,448 KB
testcase_05 AC 50 ms
56,148 KB
testcase_06 AC 47 ms
55,296 KB
testcase_07 AC 45 ms
55,664 KB
testcase_08 AC 44 ms
55,608 KB
testcase_09 AC 46 ms
56,336 KB
testcase_10 AC 46 ms
55,780 KB
testcase_11 AC 46 ms
55,476 KB
testcase_12 AC 46 ms
56,232 KB
testcase_13 AC 45 ms
55,788 KB
testcase_14 AC 46 ms
55,800 KB
testcase_15 AC 45 ms
55,576 KB
testcase_16 AC 47 ms
56,728 KB
testcase_17 AC 46 ms
55,812 KB
testcase_18 AC 46 ms
56,284 KB
testcase_19 AC 46 ms
56,176 KB
testcase_20 AC 48 ms
55,704 KB
testcase_21 AC 46 ms
55,852 KB
testcase_22 AC 46 ms
55,452 KB
testcase_23 AC 46 ms
56,952 KB
testcase_24 AC 48 ms
55,200 KB
testcase_25 AC 47 ms
56,036 KB
testcase_26 AC 47 ms
55,956 KB
testcase_27 AC 48 ms
55,372 KB
testcase_28 AC 47 ms
56,864 KB
testcase_29 AC 51 ms
56,988 KB
testcase_30 AC 47 ms
55,912 KB
testcase_31 AC 46 ms
55,276 KB
testcase_32 AC 47 ms
57,340 KB
testcase_33 AC 46 ms
55,852 KB
testcase_34 AC 47 ms
55,756 KB
testcase_35 AC 46 ms
56,548 KB
testcase_36 AC 45 ms
55,976 KB
testcase_37 AC 45 ms
55,932 KB
testcase_38 AC 46 ms
55,580 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