結果

問題 No.1530 Permutation and Popcount
ユーザー convexineqconvexineq
提出日時 2021-06-08 19:00:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 437 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,588 KB
実行使用メモリ 76,068 KB
最終ジャッジ日時 2024-11-24 20:40:35
合計ジャッジ時間 4,652 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,552 KB
testcase_01 AC 33 ms
52,460 KB
testcase_02 AC 33 ms
53,692 KB
testcase_03 AC 36 ms
53,020 KB
testcase_04 AC 36 ms
54,144 KB
testcase_05 AC 34 ms
52,744 KB
testcase_06 AC 35 ms
52,760 KB
testcase_07 AC 33 ms
52,512 KB
testcase_08 AC 35 ms
52,468 KB
testcase_09 AC 34 ms
52,068 KB
testcase_10 AC 35 ms
54,020 KB
testcase_11 AC 62 ms
75,616 KB
testcase_12 AC 76 ms
75,652 KB
testcase_13 AC 40 ms
61,744 KB
testcase_14 AC 63 ms
75,828 KB
testcase_15 AC 47 ms
68,916 KB
testcase_16 AC 41 ms
61,764 KB
testcase_17 AC 69 ms
75,772 KB
testcase_18 AC 60 ms
75,588 KB
testcase_19 AC 34 ms
53,132 KB
testcase_20 AC 34 ms
52,328 KB
testcase_21 AC 66 ms
75,636 KB
testcase_22 AC 69 ms
75,944 KB
testcase_23 AC 70 ms
75,636 KB
testcase_24 AC 45 ms
61,764 KB
testcase_25 AC 66 ms
75,660 KB
testcase_26 AC 53 ms
67,580 KB
testcase_27 AC 82 ms
75,636 KB
testcase_28 AC 68 ms
75,864 KB
testcase_29 AC 46 ms
66,184 KB
testcase_30 AC 34 ms
52,396 KB
testcase_31 AC 79 ms
75,940 KB
testcase_32 AC 85 ms
75,716 KB
testcase_33 AC 85 ms
75,636 KB
testcase_34 AC 84 ms
75,844 KB
testcase_35 AC 85 ms
75,976 KB
testcase_36 AC 84 ms
75,880 KB
testcase_37 AC 78 ms
75,528 KB
testcase_38 AC 81 ms
75,904 KB
testcase_39 AC 81 ms
75,700 KB
testcase_40 AC 81 ms
76,068 KB
testcase_41 AC 77 ms
75,844 KB
testcase_42 AC 84 ms
75,836 KB
testcase_43 AC 69 ms
75,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
L = [sum(1-bin(i*j).count("1")%2 for j in range(1,n+1)) for i in range(1,n+1)]
v = 1
dp = [1]
for i in L:
    v |= v<<i
    dp.append(v)
m += sum(L)
if m%2 or dp[-1]>>(m//2)&1==0:
    print(-1)
    exit()
m //= 2
P = []
Q = []
for i,v in enumerate(L[::-1]):
    if m < v or dp[n-i-1]>>(m-v)&1==0:
        Q.append(n-i)
    else:
        P.append(n-i)
        m -= v
print(len(P),len(Q))
print(*P)
print(*Q)
0