結果

問題 No.2766 Delicious Multiply Spice
ユーザー _a_a
提出日時 2024-06-01 01:51:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,848 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 12,160 KB
最終ジャッジ日時 2024-06-01 01:51:04
合計ジャッジ時間 3,392 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
11,776 KB
testcase_01 AC 39 ms
11,904 KB
testcase_02 AC 41 ms
11,904 KB
testcase_03 AC 39 ms
11,776 KB
testcase_04 AC 39 ms
11,904 KB
testcase_05 AC 39 ms
11,904 KB
testcase_06 AC 39 ms
11,904 KB
testcase_07 AC 40 ms
11,904 KB
testcase_08 AC 38 ms
11,776 KB
testcase_09 WA -
testcase_10 AC 39 ms
11,904 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 41 ms
11,776 KB
testcase_15 AC 40 ms
11,776 KB
testcase_16 AC 40 ms
11,904 KB
testcase_17 AC 40 ms
11,904 KB
testcase_18 AC 41 ms
11,904 KB
testcase_19 WA -
testcase_20 AC 41 ms
11,904 KB
testcase_21 AC 40 ms
11,904 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 #

import os, sys
import math, decimal, queue, heapq, bisect, itertools, functools, collections, string
from bisect import bisect, bisect_left
from collections import defaultdict, OrderedDict, deque, Counter
from functools import cmp_to_key, lru_cache, reduce
from heapq import heapify, heappush, heappushpop, heappop, heapreplace, nlargest, nsmallest
from itertools import accumulate, chain, combinations, combinations_with_replacement, compress, count, cycle, dropwhile, filterfalse, groupby, islice, permutations, product, repeat, starmap, takewhile, tee, zip_longest
from math import gcd, factorial, isqrt, comb, perm, prod, inf
from queue import Queue, PriorityQueue, LifoQueue
from string import ascii_letters, ascii_lowercase, ascii_uppercase, digits, hexdigits, octdigits

LOCAL = sys.argv[0] if '4a' in sys.argv[0] else None

P = lambda *p: [print(i) for i in p] if LOCAL else None
PI = lambda *p: print(' '.join(map(str, p))) or None
PII = lambda X: [PI(*row) for row in X]

sys.stdin = open(os.path.join(os.getcwd(), 'a3.txt'), 'r') if LOCAL else sys.stdin
I = lambda: [int(a) for l in sys.stdin for a in l.strip().split()]
S = lambda: [a for l in sys.stdin for a in l.strip().split()]
IM = lambda: [[int(a) for a in l.split()] for l in sys.stdin]
SM = lambda: [[a for a in l.split()] for l in sys.stdin]

az, AZ, mod = ascii_lowercase, ascii_uppercase, 1_000_000_007

A = I()
P(A)


def solution(A):
    def sol(x, y, res=''):
        if x < 3:
            return res
        if x >= 3 and (x - 1) % 2 == 0:
            x -= 1
            x //= 2
            res += 'A'
        if x >= 4 and (x - 1) % 3 == 0:
            x -= 1
            x //= 3
            res += 'B'
        try:
            return sol(x, y, res)
        except:
            return ''

    x, y = A[0], A[0]
    ans = sol(x, y, '')
    print(ans[::-1])


solution(A)
0