結果

問題 No.2118 遺伝的有限集合の数え上げ
ユーザー shobonvipshobonvip
提出日時 2022-11-08 17:59:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 245 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 54,184 KB
最終ジャッジ日時 2024-07-22 02:08:49
合計ジャッジ時間 3,084 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,272 KB
testcase_01 AC 36 ms
52,644 KB
testcase_02 AC 37 ms
52,688 KB
testcase_03 AC 37 ms
52,560 KB
testcase_04 AC 37 ms
52,072 KB
testcase_05 AC 36 ms
53,676 KB
testcase_06 AC 36 ms
52,708 KB
testcase_07 AC 35 ms
53,020 KB
testcase_08 AC 35 ms
52,684 KB
testcase_09 AC 36 ms
53,260 KB
testcase_10 AC 40 ms
52,216 KB
testcase_11 AC 37 ms
54,184 KB
testcase_12 AC 37 ms
52,128 KB
testcase_13 AC 37 ms
52,612 KB
testcase_14 AC 38 ms
52,752 KB
testcase_15 AC 38 ms
52,396 KB
testcase_16 AC 38 ms
52,816 KB
testcase_17 AC 37 ms
52,708 KB
testcase_18 AC 37 ms
51,868 KB
testcase_19 AC 37 ms
52,952 KB
testcase_20 AC 38 ms
52,068 KB
testcase_21 AC 38 ms
53,376 KB
testcase_22 AC 36 ms
52,892 KB
testcase_23 AC 36 ms
52,344 KB
testcase_24 AC 36 ms
52,952 KB
testcase_25 AC 37 ms
52,568 KB
testcase_26 AC 37 ms
52,488 KB
testcase_27 AC 37 ms
52,872 KB
testcase_28 AC 37 ms
53,208 KB
testcase_29 AC 36 ms
53,412 KB
testcase_30 AC 37 ms
52,212 KB
testcase_31 AC 36 ms
52,556 KB
testcase_32 AC 35 ms
53,288 KB
testcase_33 AC 36 ms
52,516 KB
testcase_34 AC 35 ms
51,824 KB
testcase_35 AC 37 ms
52,892 KB
testcase_36 AC 37 ms
52,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = []
s.append("{}")

for i in range(1, 32):
	v = []
	for j in range(8):
		if i>>j&1:
			v.append(s[j])
	s.append("{" + ",".join(v) + "}")

n = int(input())
v = []
for i in range(32):
	if n>>i&1:
		v.append(s[i])

print("{" + ",".join(v) + "}")
0