結果
問題 | No.2766 Delicious Multiply Spice |
ユーザー | player |
提出日時 | 2024-06-01 18:21:56 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 619 bytes |
コンパイル時間 | 255 ms |
コンパイル使用メモリ | 82,132 KB |
実行使用メモリ | 66,924 KB |
最終ジャッジ日時 | 2024-06-01 18:22:04 |
合計ジャッジ時間 | 3,389 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
52,332 KB |
testcase_01 | AC | 37 ms
52,332 KB |
testcase_02 | AC | 37 ms
52,268 KB |
testcase_03 | RE | - |
testcase_04 | AC | 37 ms
52,748 KB |
testcase_05 | AC | 40 ms
52,288 KB |
testcase_06 | AC | 39 ms
53,020 KB |
testcase_07 | AC | 40 ms
53,088 KB |
testcase_08 | AC | 39 ms
53,852 KB |
testcase_09 | AC | 40 ms
52,552 KB |
testcase_10 | AC | 38 ms
52,348 KB |
testcase_11 | AC | 38 ms
52,892 KB |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | AC | 37 ms
52,220 KB |
testcase_15 | AC | 37 ms
53,100 KB |
testcase_16 | AC | 37 ms
53,316 KB |
testcase_17 | AC | 36 ms
52,484 KB |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | AC | 39 ms
52,492 KB |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
ソースコード
import sys sys.setrecursionlimit(10**7) n = int(input()) d = dict() if n == 1: print("") exit() d[1] = True def dfs(now): if now in d: return d[now] if (now - 1) % 2 == 0 and dfs((now - 1) // 2): d[now] = True return True if (now - 1) % 3 == 0 and dfs((now - 1) // 3): d[now] = True return True return False dfs(n) now = n ans = [] while now > 1: if (now - 1) % 2 == 0 and d[(now - 1) // 2]: ans.append("A") now = (now - 1) // 2 else: ans.append("B") now = (now - 1) // 3 ans.reverse() print("".join(ans))