結果

問題 No.1530 Permutation and Popcount
ユーザー convexineqconvexineq
提出日時 2021-06-08 18:52:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 436 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 75,904 KB
最終ジャッジ日時 2024-05-05 04:40:41
合計ジャッジ時間 7,662 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 35 ms
51,968 KB
testcase_02 WA -
testcase_03 AC 37 ms
51,968 KB
testcase_04 AC 39 ms
52,480 KB
testcase_05 AC 35 ms
51,968 KB
testcase_06 AC 36 ms
51,840 KB
testcase_07 AC 36 ms
51,840 KB
testcase_08 AC 37 ms
51,968 KB
testcase_09 AC 37 ms
52,096 KB
testcase_10 AC 38 ms
53,120 KB
testcase_11 AC 71 ms
75,776 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 74 ms
75,776 KB
testcase_15 WA -
testcase_16 AC 46 ms
61,056 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 35 ms
51,712 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 73 ms
75,520 KB
testcase_24 AC 47 ms
60,800 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 89 ms
75,648 KB
testcase_28 AC 77 ms
75,648 KB
testcase_29 AC 53 ms
65,920 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 88 ms
75,520 KB
testcase_34 AC 93 ms
75,648 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 88 ms
75,648 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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