結果
| 問題 |
No.2118 遺伝的有限集合の数え上げ
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-11-04 22:26:47 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 370 bytes |
| コンパイル時間 | 151 ms |
| コンパイル使用メモリ | 82,048 KB |
| 実行使用メモリ | 142,080 KB |
| 最終ジャッジ日時 | 2024-07-18 20:22:50 |
| 合計ジャッジ時間 | 6,064 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 10 WA * 27 |
ソースコード
from collections import *
def f(x):
if memo[x]!=-1:
return memo[x]
if x==0:
return '{}'
i = 0
s = set()
while x:
if x%2:
s.add(f(i))
x //= 2
i += 1
res = '{'+','.join(list(s))+'}'
memo[x] = res
return res
N = int(input())
memo = defaultdict(lambda: -1)
print(f(N))