結果

問題 No.2118 遺伝的有限集合の数え上げ
ユーザー ShirotsumeShirotsume
提出日時 2022-11-04 21:49:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 452 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 58,880 KB
最終ジャッジ日時 2024-07-18 19:33:50
合計ジャッジ時間 3,090 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 37
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353

def solve(n):
    ans = ['{']
    for i in range(0, 20):
        now = 1 << i
        if n >= now and 1 & (n >> i):
            ans += solve(i) + [',']
    while ans[-1] == ',':
        ans.pop()
    ans.append('}')

    return ans

ans = solve(ii())

print(''.join(ans))
0