結果
問題 |
No.2766 Delicious Multiply Spice
|
ユーザー |
![]() |
提出日時 | 2024-05-31 22:02:29 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 344 bytes |
コンパイル時間 | 339 ms |
コンパイル使用メモリ | 81,964 KB |
実行使用メモリ | 148,108 KB |
最終ジャッジ日時 | 2024-12-20 23:28:26 |
合計ジャッジ時間 | 36,805 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 8 |
other | AC * 21 TLE * 10 |
ソースコード
import sys input = sys.stdin.readline N=int(input()) def calc(x): if x==1: return [] if (x-1)%3==0: if calc((x-1)//3)!=False: return ["B"]+calc((x-1)//3) if (x-1)%2==0: if calc((x-1)//2)!=False: return ["A"]+calc((x-1)//2) return False ANS=calc(N) print("".join(ANS[::-1]))