結果

問題 No.2766 Delicious Multiply Spice
ユーザー n_nan_na
提出日時 2024-06-01 00:03:28
言語 PyPy3
(7.3.15)
結果
MLE  
(最新)
TLE  
(最初)
実行時間 -
コード長 566 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 81,740 KB
実行使用メモリ 875,632 KB
最終ジャッジ日時 2024-12-21 01:53:06
合計ジャッジ時間 46,972 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
60,968 KB
testcase_01 MLE -
testcase_02 AC 46 ms
60,876 KB
testcase_03 MLE -
testcase_04 AC 45 ms
60,652 KB
testcase_05 MLE -
testcase_06 AC 45 ms
62,360 KB
testcase_07 MLE -
testcase_08 AC 43 ms
60,728 KB
testcase_09 MLE -
testcase_10 AC 43 ms
60,644 KB
testcase_11 MLE -
testcase_12 AC 44 ms
61,744 KB
testcase_13 MLE -
testcase_14 AC 44 ms
61,188 KB
testcase_15 MLE -
testcase_16 AC 49 ms
62,516 KB
testcase_17 MLE -
testcase_18 AC 47 ms
60,500 KB
testcase_19 MLE -
testcase_20 AC 74 ms
81,472 KB
testcase_21 MLE -
testcase_22 MLE -
testcase_23 AC 364 ms
184,060 KB
testcase_24 MLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

N = int(input())

x = 1
deq = deque()
deq.append(1)
dct = dict()
dct[1] = 0

while deq:
    x2 = 2*x + 1
    if x2 <= N and x2 not in dct:
        dct[x2] = x
        deq.append(x2)
    x3 = 3*x + 1
    if x3 <= N and x3 not in dct:
        dct[x3] = x
        deq.append(x3)
    x = deq.popleft() 
    
ans = []
while True:
    if dct[N] == 0:
        break
    pre = dct[N]
    if 2*pre + 1 == N:
        ans.append("A")
    else:
        ans.append("B")
    N = pre
        
ans = list(reversed(ans))
ans = "".join(ans)

print(ans)
0