結果

問題 No.2118 遺伝的有限集合の数え上げ
ユーザー 👑 KazunKazun
提出日時 2022-11-04 21:48:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 314 bytes
コンパイル時間 133 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 60,416 KB
最終ジャッジ日時 2024-07-18 19:32:53
合計ジャッジ時間 2,828 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
54,912 KB
testcase_01 AC 43 ms
54,784 KB
testcase_02 AC 38 ms
54,656 KB
testcase_03 AC 40 ms
54,528 KB
testcase_04 AC 38 ms
54,528 KB
testcase_05 AC 37 ms
55,040 KB
testcase_06 AC 36 ms
55,008 KB
testcase_07 AC 35 ms
55,088 KB
testcase_08 AC 37 ms
54,656 KB
testcase_09 AC 37 ms
54,528 KB
testcase_10 AC 36 ms
54,856 KB
testcase_11 AC 37 ms
54,784 KB
testcase_12 AC 37 ms
55,296 KB
testcase_13 AC 36 ms
54,784 KB
testcase_14 AC 38 ms
55,040 KB
testcase_15 AC 37 ms
55,168 KB
testcase_16 AC 39 ms
54,656 KB
testcase_17 AC 39 ms
55,296 KB
testcase_18 AC 39 ms
54,656 KB
testcase_19 AC 39 ms
54,784 KB
testcase_20 AC 40 ms
54,784 KB
testcase_21 AC 43 ms
55,296 KB
testcase_22 AC 41 ms
55,168 KB
testcase_23 AC 42 ms
55,040 KB
testcase_24 AC 42 ms
54,912 KB
testcase_25 AC 42 ms
54,528 KB
testcase_26 AC 42 ms
55,168 KB
testcase_27 AC 41 ms
55,168 KB
testcase_28 AC 43 ms
60,288 KB
testcase_29 AC 43 ms
59,904 KB
testcase_30 AC 41 ms
59,904 KB
testcase_31 AC 40 ms
59,904 KB
testcase_32 AC 40 ms
59,776 KB
testcase_33 AC 45 ms
59,800 KB
testcase_34 AC 44 ms
60,024 KB
testcase_35 AC 44 ms
59,904 KB
testcase_36 AC 42 ms
60,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import lru_cache

def solve():
    @lru_cache(maxsize=None)
    def calc(N):
        if N==0:
            return "{}"

        X=[]
        for i in range(N):
            if (N>>i)&1:
                X.append(calc(i))
        return "{"+",".join(X)+"}"
    return calc(int(input()))

print(solve())
0